1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00
This doesn't affect the correctness of the code, but it was clearly
inconsistent before this change.
This commit is contained in:
Peter Eisentraut 2023-01-06 14:25:19 +01:00
parent e7a59094b3
commit 4037c5e2fe

View File

@ -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;