From a22e73406aec4ada38c704d7df3eacc145f83feb Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Sun, 2 Sep 2007 17:18:45 +0000 Subject: [PATCH] Fixed Linux build This was SVN commit r5314. --- source/lib/sysdep/unix/unix.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/lib/sysdep/unix/unix.cpp b/source/lib/sysdep/unix/unix.cpp index 74145cfb6e..60ec39f501 100644 --- a/source/lib/sysdep/unix/unix.cpp +++ b/source/lib/sysdep/unix/unix.cpp @@ -11,7 +11,7 @@ #define GNU_SOURCE #include -#ifdef OS_MACOSX +#if OS_MACOSX #include #endif @@ -31,7 +31,7 @@ void sys_display_msgw(const wchar_t* caption, const wchar_t* msg) LibError sys_get_executable_name(char* n_path, size_t buf_size) { -#ifdef OS_MACOSX +#if OS_MACOSX static char name[PATH_MAX]; static bool init = false; if ( !init )