Skip to content

Commit be1f369

Browse files
committed
Fix build warning.
1 parent 766098b commit be1f369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ssp/ssp_common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void SSP_Trace(const char* str)
3939
#ifdef ARDUINO
4040
Serial.println(str);
4141
#else
42-
printf(str);
42+
printf("%s", str);
4343
printf("\n");
4444
#endif
4545

0 commit comments

Comments
 (0)