Skip to content

Commit c10c34e

Browse files
jmikolakevinAlbs
authored andcommitted
CDRIVER-3951 Use PRId64 format specifier for int64_t
1 parent 46f22a5 commit c10c34e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libmongoc/src/mongoc/mongoc-uri.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2851,7 +2851,7 @@ _mongoc_uri_set_option_as_int64_with_error (mongoc_uri_t *uri,
28512851
if (!bson_strcasecmp (option, MONGOC_URI_TIMEOUTMS) && value < 0) {
28522852
MONGOC_URI_ERROR (
28532853
error,
2854-
"Invalid \"%s\" of %lld: must be a non-negative integer",
2854+
"Invalid \"%s\" of %" PRId64 ": must be a non-negative integer",
28552855
option_orig,
28562856
value);
28572857
return false;

0 commit comments

Comments
 (0)