diff --git a/neo/sys/sys_local.cpp b/neo/sys/sys_local.cpp index e5af9d6e..3e0dc3ad 100644 --- a/neo/sys/sys_local.cpp +++ b/neo/sys/sys_local.cpp @@ -167,7 +167,8 @@ const char* Sys_TimeStampToStr( ID_TIME_T timeStamp ) tm* time = localtime( &ts ); if( time == NULL ) { - return "??/??/???? ??:??"; + // String separated to prevent detection of trigraphs + return "??" "/" "??" "/" "???? ??:??"; } idStr out;