Skip to content

Commit d34f61d

Browse files
authored
CDRIVER-5968 fix format warning on Windows (#1972)
1 parent 8e65858 commit d34f61d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libmongoc/src/mongoc/mongoc-openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ _mongoc_openssl_import_cert_store (LPWSTR store_name, DWORD dwFlags, X509_STORE
148148
(LPTSTR) &msg,
149149
0,
150150
NULL);
151-
MONGOC_ERROR ("Can't open CA store: 0x%.8X: '%s'", GetLastError (), msg);
151+
MONGOC_ERROR ("Can't open CA store: 0x%.8lX: '%s'", GetLastError (), msg);
152152
LocalFree (msg);
153153
return false;
154154
}

0 commit comments

Comments
 (0)