Browse Source

Fix typo in jwt-cpp fix for Darwin

thegeorg 2 years ago
parent
commit
294d9a9529
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/libs/jwt-cpp/include/picojson/picojson.h

+ 1 - 1
contrib/libs/jwt-cpp/include/picojson/picojson.h

@@ -488,7 +488,7 @@ inline std::string value::to_str() const {
   case int64_type: {
     char buf[sizeof("-9223372036854775808")];
 #if defined(__APPLE__)
-    SNPRINTF(buf, sizeof(buf), "%lld" PRId64, u_.int64_);
+    SNPRINTF(buf, sizeof(buf), "%lld", u_.int64_);
 #else
     SNPRINTF(buf, sizeof(buf), "%" PRId64, u_.int64_);
 #endif