We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04bd477 commit c532510Copy full SHA for c532510
2 files changed
common/JackRequest.h
@@ -46,7 +46,7 @@ namespace Jack
46
int reserr = (exp); \
47
if (reserr < 0) { \
48
if (reserr != JACK_REQUEST_ERR_ABORTED) \
49
- jack_error("CheckRes error"); \
+ jack_error("CheckRes error for " #exp "in %s", __PRETTY_FUNCTION__); \
50
return reserr; \
51
} \
52
}
common/JackRequestDecoder.cpp
@@ -347,7 +347,7 @@ int JackRequestDecoder::HandleRequest(detail::JackChannelTransactionInterface* s
347
348
349
default:
350
- jack_error("Unknown request %ld", type);
+ jack_error("Unknown request %d", type_aux);
351
return -1;
352
353
0 commit comments