2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-29 21:38:05 +00:00

Quiet a gcc warning.

This commit is contained in:
Todd C. Miller 2014-02-05 09:55:31 -07:00
parent fbfe7caba4
commit 91141e5cc1

View File

@ -88,8 +88,8 @@ static struct atoid_data {
{ "0,1", 0, ",", "," },
{ "10", 10, NULL, NULL },
{ "-2", -2, NULL, NULL },
{ "-2", 4294967294, NULL, NULL },
{ "4294967294", 4294967294, NULL, NULL },
{ "-2", 4294967294U, NULL, NULL },
{ "4294967294", 4294967294U, NULL, NULL },
{ NULL, 0, NULL, NULL }
};