diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-01-01 20:05:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-01 20:05:42 +0100 |
| commit | a63ad76603accc70747a2073c78139299064c43b (patch) | |
| tree | b64302ca02847a73d9c8445c11023cfc34314dff /src/Fl_Image_Reader.h | |
| parent | 23e8d831a868774c014993d52eead0cbe105f218 (diff) | |
FLUID refactor and macOS warnings removed (#623)
P renamed to g_project
class Project renamed to class Fluid_Project
fixes macOS type cast warnings
Diffstat (limited to 'src/Fl_Image_Reader.h')
| -rw-r--r-- | src/Fl_Image_Reader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_Image_Reader.h b/src/Fl_Image_Reader.h index ef327922a..4a20d6602 100644 --- a/src/Fl_Image_Reader.h +++ b/src/Fl_Image_Reader.h @@ -81,7 +81,7 @@ public: const char *name() const { return name_; } // skip a given number of bytes - void skip(unsigned int n) { seek(tell() + n); } + void skip(unsigned int n) { seek((unsigned int)tell() + n); } private: // open() sets this if we read from a file |
