diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-01-01 17:09:07 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-01-01 17:09:15 +0100 |
| commit | ab0d59220eb341daea4ac30bb4b506370de98eb0 (patch) | |
| tree | 0d10a140cb8c7bc5468cca8848a1c54b208c79c0 /fluid/Fluid_Image.h | |
| parent | bfe730ecbf94fb709928b735cf52c41e1e4d7ad3 (diff) | |
FLUID: Fixes size_t signedness warning
Diffstat (limited to 'fluid/Fluid_Image.h')
| -rw-r--r-- | fluid/Fluid_Image.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/Fluid_Image.h b/fluid/Fluid_Image.h index 705495b65..4845160c9 100644 --- a/fluid/Fluid_Image.h +++ b/fluid/Fluid_Image.h @@ -31,8 +31,8 @@ class Fluid_Image { protected: Fluid_Image(const char *name); // no public constructor ~Fluid_Image(); // no public destructor - size_t write_static_binary(); - size_t write_static_text(); + size_t write_static_binary(const char* fmt); + size_t write_static_text(const char* fmt); void write_static_rgb(const char* idata_name); public: int written; |
