mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
Fix typo
This doesn't affect the correctness of the code, but it was clearly inconsistent before this change.
This commit is contained in:
parent
e7a59094b3
commit
4037c5e2fe
@ -412,7 +412,7 @@ make_const(ParseState *pstate, A_Const *aconst)
|
||||
base = 8;
|
||||
startptr += 2;
|
||||
}
|
||||
if (startptr[1] == 'x' || startptr[1] == 'X')
|
||||
else if (startptr[1] == 'x' || startptr[1] == 'X')
|
||||
{
|
||||
base = 16;
|
||||
startptr += 2;
|
||||
|
Loading…
x
Reference in New Issue
Block a user