summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-04-22 22:24:56 +0200
committerJulien Nabet <serval2412@yahoo.fr>2011-04-22 22:24:56 +0200
commit3872afebc207a75b0d5b73c8129e1b4ed77de56f (patch)
treef366ae0994de5b16c33cf4c5ae23a2765b14f8c7 /sal
parenta1c0f9c6bedb3bc72ce8c5c5380802e9bcb80beb (diff)
It seems there was an extra semi colon here
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/unx/diagnose.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/diagnose.c b/sal/osl/unx/diagnose.c
index 5363182fcd6b..8339a4ad7c7d 100644
--- a/sal/osl/unx/diagnose.c
+++ b/sal/osl/unx/diagnose.c
@@ -257,7 +257,7 @@ sal_Bool SAL_CALL osl_assertFailedLine (
/* output backtrace */
char const * envBacktrace = getenv( "SAL_DIAGNOSE_BACKTRACE" );
- if( envBacktrace != NULL && *envBacktrace != '\0' );
+ if( envBacktrace != NULL && *envBacktrace != '\0' )
osl_diagnose_backtrace_Impl(f);
/* release lock and leave */