From f5ce61ea57e4851999eb0a2a805a5e2aab5b86e4 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Wed, 9 Mar 2011 09:09:15 +0100 Subject: lib/util/fault.c - "call_backtrace" - no need to have "backtrace_size" as size_t The function "backtrace" returns an "int". --- lib/util/fault.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/util') 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) */ -- cgit