diff options
| author | Matthias Melcher <github@matthiasm.com> | 2022-12-10 13:34:00 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2022-12-10 13:34:00 +0100 |
| commit | 98d97daf112906fe1732c6a7d9c5db946e0e8df5 (patch) | |
| tree | 18f494a68405343d85d58b4245247bcf69794315 /fluid/Fl_Function_Type.cxx | |
| parent | fa41211ccae24d75e940721bae68d3abe7f2e1ee (diff) | |
Fixes some implicit type cast warnings
Diffstat (limited to 'fluid/Fl_Function_Type.cxx')
| -rw-r--r-- | fluid/Fl_Function_Type.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fl_Function_Type.cxx b/fluid/Fl_Function_Type.cxx index 4d3c34464..9affddb63 100644 --- a/fluid/Fl_Function_Type.cxx +++ b/fluid/Fl_Function_Type.cxx @@ -1224,7 +1224,7 @@ void Fl_Data_Type::write_code1() { message = "Can't include data from file. Can't open"; } else { fseek(f, 0, SEEK_END); - nData = ftell(f); + nData = (int)ftell(f); fseek(f, 0, SEEK_SET); if (nData) { data = (char*)calloc(nData, 1); |
