Maciej Żenczykowski
2010-Oct-26 21:58 UTC
[klibc] [PATCH] fix typo in __static_inline macro definitions
From: Maciej ?enczykowski <maze at google.com> Commit 57c0820992c7b735c7d6283e451b6dac49bf8b05 introduced and obvious typo - fix it. Signed-off-by: Maciej ?enczykowski <maze at google.com> --- usr/include/klibc/compiler.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/usr/include/klibc/compiler.h b/usr/include/klibc/compiler.h index 08e330f..ff5a006 100644 --- a/usr/include/klibc/compiler.h +++ b/usr/include/klibc/compiler.h @@ -30,7 +30,7 @@ # define __static_inline static __inline__ # endif #else -# define __extern_inline inline /* Just hope this works... */ +# define __static_inline inline /* Just hope this works... */ #endif /* -- 1.7.1
Maximilian Attems
2010-Oct-30 13:26 UTC
[klibc] [PATCH] fix typo in __static_inline macro definitions
On Tue, 26 Oct 2010, Maciej ?enczykowski wrote:> From: Maciej ?enczykowski <maze at google.com> > > Commit 57c0820992c7b735c7d6283e451b6dac49bf8b05 introduced > and obvious typo - fix it. >thanks for catching it, applied. -- maks