[PATCH] stacktrace: fix header file for !CONFIG_STACKTRACE

From: Johannes Berg
Date: Fri Jul 06 2007 - 06:36:31 EST


The print_stack_trace macro in stacktrace.h has a wrong number of
arguments, fix it.

Signed-off-by: Johannes Berg <johannes@xxxxxxxxxxxxxxxx>

---
include/linux/stacktrace.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-2.6-git.orig/include/linux/stacktrace.h 2007-07-05 16:03:41.313168396 +0200
+++ linux-2.6-git/include/linux/stacktrace.h 2007-07-05 16:04:01.588168396 +0200
@@ -13,7 +13,7 @@ extern void save_stack_trace(struct stac
extern void print_stack_trace(struct stack_trace *trace, int spaces);
#else
# define save_stack_trace(trace) do { } while (0)
-# define print_stack_trace(trace) do { } while (0)
+# define print_stack_trace(trace, spaces) do { } while (0)
#endif

#endif


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/