Skip to content

Commit

Permalink
Merge pull request #1802 from yuma-m/develop
Browse files Browse the repository at this point in the history
Fix wrong log headers
  • Loading branch information
disa6302 authored Sep 8, 2023
2 parents 7a85c04 + 8f79cbd commit 4778318
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/kvsWebRTCClientViewer.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ INT32 main(INT32 argc, CHAR* argv[])
if (pSampleConfiguration != NULL) {
retStatus = freeSignalingClient(&pSampleConfiguration->signalingClientHandle);
if (retStatus != STATUS_SUCCESS) {
DLOGE("[KVS Master] freeSignalingClient(): operation returned status code: 0x%08x ", retStatus);
DLOGE("[KVS Viewer] freeSignalingClient(): operation returned status code: 0x%08x ", retStatus);
}

retStatus = freeSampleConfiguration(&pSampleConfiguration);
if (retStatus != STATUS_SUCCESS) {
DLOGE("[KVS Master] freeSampleConfiguration(): operation returned status code: 0x%08x ", retStatus);
DLOGE("[KVS Viewer] freeSampleConfiguration(): operation returned status code: 0x%08x ", retStatus);
}
}
DLOGI("[KVS Viewer] Cleanup done");
Expand Down

0 comments on commit 4778318

Please sign in to comment.