aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2022-09-14 15:19:34 +0300
committerthegeorg <thegeorg@yandex-team.com>2022-09-14 15:19:34 +0300
commit294d9a9529ab04699804027a0f98097506094ba4 (patch)
treebf2361c4422b96d47daf392fdbcea103c628dad5
parent93f18fccde2eeff3db4784ee8e37bad102a8d5da (diff)
downloadydb-294d9a9529ab04699804027a0f98097506094ba4.tar.gz
Fix typo in jwt-cpp fix for Darwin
-rw-r--r--contrib/libs/jwt-cpp/include/picojson/picojson.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/jwt-cpp/include/picojson/picojson.h b/contrib/libs/jwt-cpp/include/picojson/picojson.h
index b5b38017b5..c574b4cd7b 100644
--- a/contrib/libs/jwt-cpp/include/picojson/picojson.h
+++ b/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