Index: trunk/psLib/src/sys/psString.c
===================================================================
--- trunk/psLib/src/sys/psString.c	(revision 31152)
+++ trunk/psLib/src/sys/psString.c	(revision 40551)
@@ -496,2 +496,7 @@
 }
 
+// several snprintf statements below my truncate their output
+// gcc (since 8.1) warns if the output may be truncated.
+// the following NOOP function is used to fool the compiler
+// see ps_snprintf_nowarn in psString.h
+void psNOOP (void) { }
