diff options
Diffstat (limited to 'docs/style-guide.txt')
-rw-r--r-- | docs/style-guide.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/style-guide.txt b/docs/style-guide.txt index 381275a1d..7560d6986 100644 --- a/docs/style-guide.txt +++ b/docs/style-guide.txt | |||
@@ -377,13 +377,13 @@ used in the code. | |||
377 | 377 | ||
378 | (in .h header file) | 378 | (in .h header file) |
379 | 379 | ||
380 | #ifdef CONFIG_FEATURE_FUNKY | 380 | #if ENABLE_FEATURE_FUNKY |
381 | static inline void maybe_do_funky_stuff (int bar, int baz) | 381 | static inline void maybe_do_funky_stuff(int bar, int baz) |
382 | { | 382 | { |
383 | /* lotsa code in here */ | 383 | /* lotsa code in here */ |
384 | } | 384 | } |
385 | #else | 385 | #else |
386 | static inline void maybe_do_funky_stuff (int bar, int baz) {} | 386 | static inline void maybe_do_funky_stuff(int bar, int baz) {} |
387 | #endif | 387 | #endif |
388 | 388 | ||
389 | (in the .c source file) | 389 | (in the .c source file) |