commit b6069211d398a9cd9b3662b3ce7046eb7dc5071f
Author: Jakub Bogusz <[email protected]>
Date:   Mon Dec 10 17:35:44 2018 +0100

    - eeh, fixed mistaken stdint type vs C format

 nfs-utils-x32.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/nfs-utils-x32.patch b/nfs-utils-x32.patch
index c948f09..365dffc 100644
--- a/nfs-utils-x32.patch
+++ b/nfs-utils-x32.patch
@@ -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. */
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/nfs-utils.git/commitdiff/b6069211d398a9cd9b3662b3ce7046eb7dc5071f

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to