Skip to content

Commit 6a3d0a2

Browse files
committed
bugfix: wrong stateMachineRetryCount prints
- The variable is uint32_t, printing it using llu format specifier is wrong - Use PRIu32 format specifier for the same
1 parent ce70412 commit 6a3d0a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/source/Signaling/StateMachine.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ STATUS defaultSignalingStateTransitionHook(UINT64 customData /* customData shoul
101101
pSignalingStateMachineRetryStrategy, &pSignalingClient->diagnostics.stateMachineRetryCount)) != STATUS_SUCCESS) {
102102
DLOGW("Failed to get retry count. Error code: %08x", countStatus);
103103
} else {
104-
DLOGD("Retry count: %llu", pSignalingClient->diagnostics.stateMachineRetryCount);
104+
DLOGD("Retry count: %" PRIu32, pSignalingClient->diagnostics.stateMachineRetryCount);
105105
}
106106
}
107107
DLOGV("Signaling Client base result is [%u]. Executing KVS retry handler of retry strategy type [%u]", pSignalingClient->result,

0 commit comments

Comments
 (0)