diff --git a/src/shared/Util.cpp b/src/shared/Util.cpp index 36c9a1a15..fac2f2d53 100644 --- a/src/shared/Util.cpp +++ b/src/shared/Util.cpp @@ -464,7 +464,7 @@ void vutf8printf(FILE *out, const char *str, va_list* ap) Utf8toWStr(temp_buf, temp_len, wtemp_buf, wtemp_len); CharToOemBuffW(&wtemp_buf[0], &temp_buf[0], wtemp_len+1); - fprintf(out, temp_buf); + fprintf(out, "%s", temp_buf); #else vfprintf(out, str, *ap); #endif diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 3e42f8ac3..73e8c39e4 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10491" + #define REVISION_NR "10492" #endif // __REVISION_NR_H__