Skip to content

Commit 9aac15c

Browse files
authored
Merge pull request #3 from BleakleyMcD/master
Fix printf PRIu8 format string compile error in deckcontrol.cpp
2 parents 1f0c1ee + e7cab2b commit 9aac15c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

deckcontrol.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,8 @@ int main(int argc, char *argv[])
269269
uint8_t hours, minutes, seconds, frames;
270270
deckControl->GetTimecode(&currentTimecode, &deckError);
271271
currentTimecode->GetComponents(&hours, &minutes, &seconds, &frames);
272-
printf("TC=%02"PRIu8":%02"PRIu8":%02"PRIu8":%02"PRIu8"\n",
273-
hours, minutes, seconds, frames);
272+
printf("TC=%02" PRIu8 ":%02" PRIu8 ":%02" PRIu8 ":%02" PRIu8 "\n",
273+
hours, minutes, seconds, frames);
274274
SAFE_RELEASE(currentTimecode);
275275
break;
276276
case CRASH_RECORD_START:

0 commit comments

Comments
 (0)