]> git.pld-linux.org Git - packages/nfs-utils.git/commitdiff
- eeh, fixed mistaken stdint type vs C format auto/th/nfs-utils-2.3.3-1
authorJakub Bogusz <qboosh@pld-linux.org>
Mon, 10 Dec 2018 16:35:44 +0000 (17:35 +0100)
committerJakub Bogusz <qboosh@pld-linux.org>
Mon, 10 Dec 2018 16:35:44 +0000 (17:35 +0100)
nfs-utils-x32.patch

index c948f09c535580ca63f841fe1f3a1a1062dfed9c..365dffcf927d99a5003da8167a30d4fb0ff5724f 100644 (file)
@@ -58,7 +58,7 @@
 -              snprintf(buf1, sizeof(buf1), "%lu",
 -                       time(NULL) + cache_entry_expiration);
 +              snprintf(buf1, sizeof(buf1), "%llu",
-+                       (uint64_t)(time(NULL) + cache_entry_expiration));
++                       (unsigned long long)(time(NULL) + cache_entry_expiration));
                addfield(&bp, &bsiz, buf1);
                /* Note we're ignoring the status field in this case; we'll
                 * just map to nobody instead. */
This page took 0.144557 seconds and 4 git commands to generate.