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
commit22c1a4834e8210e0bdb4fbfdf78b0b66014aab28 (patch)
tree8a1fc27d1c486d776fa0429f6e96bbe3b896a697
parent26d49e1f8da91f50448749d4aeb5227e82827473 (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 00f9942c3019..8f42e97048fa 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;