mirror of
https://github.com/postgres/postgres.git
synced 2026-03-02 21:30:36 -05:00
Have pg_upgrade use strtoul(), not strtol().
This commit is contained in:
parent
b757f18f2f
commit
3689583d5a
1 changed files with 1 additions and 1 deletions
|
|
@ -269,5 +269,5 @@ getErrorText(int errNum)
|
|||
unsigned int
|
||||
str2uint(const char *str)
|
||||
{
|
||||
return strtol(str, NULL, 10);
|
||||
return strtoul(str, NULL, 10);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue