From 32a04e872187f81d72bc1611bde8be02083eabc7 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Tue, 22 Nov 2011 18:19:28 +0100 Subject: [PATCH] Formatting cleanup of B_DEFINE_WEAK_ALIAS macro. * This doesn't necessarily belong here, but we're going to make use of it in the next changeset. Additionally, this change to BeBuild.h will trigger a rebuild of nearly all files, and applying it during the multibyte-related work will skip another full rebuild ... --- headers/os/BeBuild.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/os/BeBuild.h b/headers/os/BeBuild.h index 63fac1f98c..f2067abf72 100644 --- a/headers/os/BeBuild.h +++ b/headers/os/BeBuild.h @@ -79,7 +79,7 @@ __asm__(".symver " function "," versionedSymbol) #define B_DEFINE_WEAK_ALIAS(name, alias_name) \ - __typeof (name) alias_name __attribute__ ((weak, alias (#name))) + __typeof(name) alias_name __attribute__((weak, alias(#name))) #endif /* _BE_BUILD_H */