From 0cb57f93085877aee6fc4464f401018709eb4646 Mon Sep 17 00:00:00 2001 From: ananth Date: Mon, 11 Jun 2007 11:32:53 +0000 Subject: Fix minor issue with change for bz4075. The initial fix caused a lot of test failures on powerpc. Thanks to Srinivasa for tracking the problem down. --- runtime/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/string.h') diff --git a/runtime/string.h b/runtime/string.h index fa4be125..6106b009 100644 --- a/runtime/string.h +++ b/runtime/string.h @@ -24,7 +24,7 @@ void _stp_text_str(char *out, char *in, int len, int quoted, int user); * to __get_user() if not. Other archs can use __get_user() as is */ #ifdef __powerpc64__ -#ifdef __get_user_inatomic(x, ptr) +#ifdef __get_user_inatomic #define __stp_get_user(x, ptr) __get_user_inatomic(x, ptr) #else /* __get_user_inatomic */ #define __stp_get_user(x, ptr) __get_user(x, ptr) -- cgit