summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorThomas Klausner <wiz@NetBSD.org>2010-10-13 16:08:18 +0200
committerThomas Klausner <wiz@NetBSD.org>2010-10-13 16:09:07 +0200
commit37df8c87953e27684fb3b52c249bc6f7aaf54a98 (patch)
tree3772e6bdde34de4909ce01766f31492023f730fc /sal
parent0a3eb8c536ea876675544c8a0d0b29e45ef629a6 (diff)
There is no #elifdef, use #elif defined.
Diffstat (limited to 'sal')
-rw-r--r--sal/inc/osl/diagnose.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/inc/osl/diagnose.h b/sal/inc/osl/diagnose.h
index 055a7971e7b6..b0038ee604fb 100644
--- a/sal/inc/osl/diagnose.h
+++ b/sal/inc/osl/diagnose.h
@@ -80,9 +80,9 @@ pfunc_osl_printDetailedDebugMessage SAL_CALL osl_setDetailedDebugMessageFunc( pf
/* the macro OSL_THIS_FUNC is intended to be an office internal macro for now */
#ifdef __func__
#define OSL_THIS_FUNC __func__
-#elifdef __PRETTY_FUNCTION__
+#elif defined (__PRETTY_FUNCTION__)
#define OSL_THIS_FUNC __PRETTY_FUNCTION__
-#elifdef __FUNCTION__
+#elif defined (__FUNCTION__)
#define OSL_THIS_FUNC __FUNCTION__
#else
#define OSL_THIS_FUNC " "