]> git.sur5r.net Git - i3/i3/commitdiff
remove unnecessary forward declaration of set_statusline_error
authorAlexander Kedrik <alexander.kedrik@gmail.com>
Wed, 1 Jan 2014 15:23:10 +0000 (19:23 +0400)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 4 Jan 2014 19:44:54 +0000 (20:44 +0100)
Attributes can be added to function definitions.
Tested with gcc 4.8.2 and clang 3.3

i3bar/src/child.c

index 63e26f1bdcce697e26b1778e08fabab94225dc71..3621234c55a0f5a2c28d309e4a9c699ffa361609 100644 (file)
@@ -81,12 +81,7 @@ static void clear_status_blocks() {
  * `draw_bars' is called, the error message text will be drawn on the bar in
  * the space allocated for the statusline.
  */
-
-/* forward function declaration is needed to add __attribute__ mechanism which
- * helps the compiler understand we are defining a printf wrapper */
-static void set_statusline_error(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
-
-static void set_statusline_error(const char *format, ...) {
+__attribute__ ((format (printf, 1, 2))) static void set_statusline_error(const char *format, ...) {
     clear_status_blocks();
 
     char *message;