From 91141e5cc1e3484d0e830c92a75cb0ddefd478e7 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Wed, 5 Feb 2014 09:55:31 -0700 Subject: [PATCH] Quiet a gcc warning. --- common/regress/atofoo/atofoo_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/regress/atofoo/atofoo_test.c b/common/regress/atofoo/atofoo_test.c index 852822969..9e4753349 100644 --- a/common/regress/atofoo/atofoo_test.c +++ b/common/regress/atofoo/atofoo_test.c @@ -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 } };