From 1847b994612ea04967540ad227d173b827ca6301 Mon Sep 17 00:00:00 2001 From: tron Date: Mon, 17 Jan 2005 10:17:18 +0000 Subject: (svn r1551) Silence a warning and simplify a preprocessor check --- unix.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'unix.c') diff --git a/unix.c b/unix.c index 825e6f3c1..f47ed6c26 100644 --- a/unix.c +++ b/unix.c @@ -408,6 +408,7 @@ int GetLanguageList(char **languages, int max) return num; } +#if defined(__BEOS__) || defined(__linux__) static void ChangeWorkingDirectory(char *exe) { char *s = strrchr(exe, '/'); @@ -417,6 +418,7 @@ static void ChangeWorkingDirectory(char *exe) *s = '/'; } } +#endif void ShowInfo(const char *str) { @@ -439,10 +441,7 @@ void ShowOSErrorBox(const char *buf) int CDECL main(int argc, char* argv[]) { // change the working directory to enable doubleclicking in UIs -#if defined(__BEOS__) - ChangeWorkingDirectory(argv[0]); -#endif -#if defined(__linux__) +#if defined(__BEOS__) || defined(__linux__) ChangeWorkingDirectory(argv[0]); #endif -- cgit v1.2.3-54-g00ecf