mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-01 17:18:11 +02:00
Add missing file from previous commit.
This commit is contained in:
parent
b5ce0e1d0b
commit
f7ab2d3821
1 changed files with 9 additions and 0 deletions
|
|
@ -380,11 +380,20 @@ again:
|
|||
if (c == '0')
|
||||
if ((configBuf[configPos] == 'x') ||
|
||||
(configBuf[configPos] == 'X'))
|
||||
{
|
||||
base = 16;
|
||||
val.numType = PARSE_HEX;
|
||||
}
|
||||
else
|
||||
{
|
||||
base = 8;
|
||||
val.numType = PARSE_OCTAL;
|
||||
}
|
||||
else
|
||||
{
|
||||
base = 10;
|
||||
val.numType = PARSE_DECIMAL;
|
||||
}
|
||||
|
||||
configRBuf[0] = c;
|
||||
i = 1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue