- Added missing GCCPRINTF to FileWriter::Printf.

Luckily, this has shown no problems.
This commit is contained in:
Edoardo Prezioso 2016-12-10 13:05:14 +01:00 committed by Christoph Oelckers
parent 45e5e5c6ee
commit 810c632beb

View file

@ -374,7 +374,7 @@ public:
static FileWriter *Open(const char *filename);
virtual size_t Write(const void *buffer, size_t len);
size_t Printf(const char *fmt, ...);
size_t Printf(const char *fmt, ...) GCCPRINTF(2,3);
protected: