From 913cf8558e7573b525aa918753df1ca524e5746a Mon Sep 17 00:00:00 2001 From: dos-reis Date: Mon, 17 Mar 2008 14:50:57 +0000 Subject: Add missing `return'. --- src/lib/cfuns-c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/cfuns-c.c b/src/lib/cfuns-c.c index 95c9787f..764c5d6c 100644 --- a/src/lib/cfuns-c.c +++ b/src/lib/cfuns-c.c @@ -310,7 +310,7 @@ OPENAXIOM_EXPORT int oa_chdir(const char* path) { #ifdef __MINGW32__ - SetCurrentDirectory(path) ? 0 : -1; + return SetCurrentDirectory(path) ? 0 : -1; #else return chdir(path); #endif /* __MINGW32__ */ -- cgit v1.2.3