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_utf8.cxx | |
| 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_utf8.cxx')
| -rw-r--r-- | src/fl_utf8.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_utf8.cxx b/src/fl_utf8.cxx index 6028f3172..fcbb63ee0 100644 --- a/src/fl_utf8.cxx +++ b/src/fl_utf8.cxx @@ -40,7 +40,7 @@ #define NBC 0xFFFF + 1 static int Toupper(int ucs) { - long i; + int i; static unsigned short *table = NULL; if (!table) { |
