mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-21 19:41:11 +00:00
- Added missing GCCPRINTF to FileWriter::Printf.
Luckily, this has shown no problems.
This commit is contained in:
parent
45e5e5c6ee
commit
810c632beb
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ public:
|
||||||
static FileWriter *Open(const char *filename);
|
static FileWriter *Open(const char *filename);
|
||||||
|
|
||||||
virtual size_t Write(const void *buffer, size_t len);
|
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:
|
protected:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue