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.
This commit is contained in:
Dan Williams 2012-06-03 15:48:35 -05:00
parent 7be7095f6b
commit ad72966169

View file

@ -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 ();