masaori335 opened a new pull request #6963:
URL: https://github.com/apache/trafficserver/pull/6963
Fix warnings on macOS after #6945.
```
CXX gold_tests/continuations/plugins/session_id_verify.lo
gold_tests/continuations/plugins/session_id_verify.cc:46:83: error: format
specifies type 'long' but the argument has type 'int64_t' (aka 'long long')
[-Werror,-Wformat]
TSError("[%s] Plugin encountered a duplicate session id: %ld",
PLUGIN_NAME, id);
~~~
^~
%lld
gold_tests/continuations/plugins/session_id_verify.cc:50:45: error: format
specifies type 'long' but the argument has type 'int64_t' (aka 'long long')
[-Werror,-Wformat]
TSDebug(PLUGIN_NAME, "session id: %ld", id);
~~~ ^~
%lld
2 errors generated.
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]