Skip to content
Snippets Groups Projects
Commit 1bc19dac authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Eliminate extra semi-colon

parent 3a4a59ed
No related branches found
No related tags found
No related merge requests found
Pipeline #5436 passed
......@@ -365,7 +365,7 @@ DLLEXPORT char* os_cmdshell(void);
DLLEXPORT char* lastchar(const char* str);
DLLEXPORT int safe_snprintf(char *dst, size_t size, const char *fmt, ...)
#if defined(__GNUC__) // Catch printf-format errors
__attribute__ ((format (printf, 3 , 4))); // 1 is 'this'
__attribute__ ((format (printf, 3 , 4))) // 1 is 'this'
#endif
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment