diff options
-rw-r--r-- | source3/lib/util_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index aa77d75ad3..314c7eac33 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -852,7 +852,7 @@ uint64_t STR_TO_SMB_BIG_UINT(const char *nptr, const char **entptr) while (*p && isspace(*p)) p++; - sscanf(p,"%"PRIu64,&val); + sscanf(p,"%"SCNu64,&val); if (entptr) { while (*p && isdigit(*p)) p++; |