diff options
author | Nicky <nicky.dasmijn@gmail.com> | 2022-04-18 16:48:39 +0200 |
---|---|---|
committer | Nicky <nicky.dasmijn@gmail.com> | 2022-04-18 16:48:39 +0200 |
commit | 46402bd527e56cf7bc071892c4dd807903a3dc00 (patch) | |
tree | 0bc262ed3848983ef88796cb481abb16f2995200 | |
parent | b532c2986b7d47b2f0fe75690ceb8bc2183a30a9 (diff) |
Correctio for preproc #else
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index e01d713501..2e72e133a5 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -303,7 +303,7 @@ S32 gLastExecDuration = -1; // (<0 indicates unknown) # define LL_PLATFORM_KEY "mac" #elif LL_LINUX # define LL_PLATFORM_KEY "lnx" -else +#else # error "Unknown Platform" #endif const char* gPlatform = LL_PLATFORM_KEY; |