2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

Fix a clang warning on macOS

This commit is contained in:
Todd C. Miller 2016-12-02 09:34:08 -07:00
parent 2884816c8e
commit e8f612ead4

View File

@ -82,7 +82,7 @@ static struct strtoid_data {
{ "0,1", 0, ",", "," },
{ "10", 10, NULL, NULL },
{ "-2", -2, NULL, NULL },
#if (id_t)-2 == 4294967294U
#if SIZEOF_ID_T != SIZEOF_LONG_LONG
{ "-2", 4294967294U, NULL, NULL },
#endif
{ "4294967294", 4294967294U, NULL, NULL },