summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2010-11-01 13:09:47 +0100
committerDavid Tardon <dtardon@redhat.com>2010-11-01 13:10:30 +0100
commitda179948ca7896c102193ccd67fbadbc7d115480 (patch)
treebf9da41cf61e6bb1a614364ab458526f8a5f30d3
parent8ccf1edc4025b914a3aef76bc3cc461e7f718620 (diff)
add missing parenthesis
-rw-r--r--sal/osl/unx/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/signal.c b/sal/osl/unx/signal.c
index 6201646e0..add11b59e 100644
--- a/sal/osl/unx/signal.c
+++ b/sal/osl/unx/signal.c
@@ -574,7 +574,7 @@ static int ReportCrash( int Signal )
void *stackframes[MAX_STACK_FRAMES];
int iFrame;
- int nFrames = backtrace( stackframes, SAL_N_ELEMENTS(stackframes);
+ int nFrames = backtrace( stackframes, SAL_N_ELEMENTS(stackframes) );
FILE *xmlout = NULL, *stackout = NULL, *checksumout = NULL;
int fdxml, fdstk, fdchksum;