diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2011-03-09 09:09:15 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2011-03-10 11:12:05 +0100 |
commit | f5ce61ea57e4851999eb0a2a805a5e2aab5b86e4 (patch) | |
tree | 9a311b21c8b12a0e264fb06301faf7707dfb0571 /lib | |
parent | e00893d8395ed813a5bc9dd7bf28f29de369db46 (diff) | |
download | samba-f5ce61ea57e4851999eb0a2a805a5e2aab5b86e4.tar.gz samba-f5ce61ea57e4851999eb0a2a805a5e2aab5b86e4.tar.bz2 samba-f5ce61ea57e4851999eb0a2a805a5e2aab5b86e4.zip |
lib/util/fault.c - "call_backtrace" - no need to have "backtrace_size" as size_t
The function "backtrace" returns an "int".
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/fault.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/fault.c b/lib/util/fault.c index 256e55a85b..29b45ee147 100644 --- a/lib/util/fault.c +++ b/lib/util/fault.c @@ -51,7 +51,7 @@ _PUBLIC_ void call_backtrace(void) #define BACKTRACE_STACK_SIZE 64 #endif void *backtrace_stack[BACKTRACE_STACK_SIZE]; - size_t backtrace_size; + int backtrace_size; char **backtrace_strings; /* get the backtrace (stack frames) */ |