diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-05-30 15:34:50 +0200 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-06-05 09:50:07 +0200 |
| commit | 2d2f474794f46fae6d12b97661d4bebe5bb21085 (patch) | |
| tree | 0101de46b661a2243012b27b170752611662239c /fluid/Fluid.cxx | |
| parent | e2683f36d46188827d3954be3053ade3716709ed (diff) | |
Fix compiler warning warning [-Wundef]
warning: "_WIN32" is not defined, evaluates to 0 [-Wundef]
Diffstat (limited to 'fluid/Fluid.cxx')
| -rw-r--r-- | fluid/Fluid.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fluid.cxx b/fluid/Fluid.cxx index 9a113c478..89ea724b8 100644 --- a/fluid/Fluid.cxx +++ b/fluid/Fluid.cxx @@ -320,7 +320,7 @@ void Application::create_tmpdir() { tmpdir_create_called = true; char buf[128]; -#if _WIN32 +#ifdef _WIN32 // The usual temp file locations on Windows are // %system%\Windows\Temp // %userprofiles%\AppData\Local |
