From ad729661692c9ebc0ffab261ead687a467bca3de Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Sun, 3 Jun 2012 15:48:35 -0500 Subject: [PATCH] tests: fix libnm-util testcase on 32-bit platforms On 32-bit, gulong is 32-bits, so we need to use guint64 here, which we should have been using anyway. --- libnm-util/tests/test-general.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnm-util/tests/test-general.c b/libnm-util/tests/test-general.c index 1eed888789..2acb31b37a 100644 --- a/libnm-util/tests/test-general.c +++ b/libnm-util/tests/test-general.c @@ -783,7 +783,7 @@ new_test_connection (void) NMConnection *connection; NMSetting *setting; char *uuid; - gulong timestamp = time (NULL); + guint64 timestamp = time (NULL); connection = nm_connection_new ();