mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-31 11:20:12 +01:00
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:
parent
7be7095f6b
commit
ad72966169
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue