From c2e61c3c01854141b7d5fae30974a0116abe3e42 Mon Sep 17 00:00:00 2001 From: Andrew Hsieh Date: Fri, 6 Sep 2013 17:34:31 +0800 Subject: [PATCH] Fix issue 58135 about _C_LABEL_STRING macro w/o space between literal in C++ Change-Id: Iefc3c090071f3629998515d43907139b07105672 --- ndk/platforms/android-3/include/sys/cdefs_elf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndk/platforms/android-3/include/sys/cdefs_elf.h b/ndk/platforms/android-3/include/sys/cdefs_elf.h index 1e5747010..5d2e0f3b6 100644 --- a/ndk/platforms/android-3/include/sys/cdefs_elf.h +++ b/ndk/platforms/android-3/include/sys/cdefs_elf.h @@ -32,7 +32,7 @@ #ifdef __LEADING_UNDERSCORE #define _C_LABEL(x) __CONCAT(_,x) -#define _C_LABEL_STRING(x) "_"x +#define _C_LABEL_STRING(x) "_" x #else #define _C_LABEL(x) x #define _C_LABEL_STRING(x) x