Skip to content

Commit

Permalink
Merge pull request #1056 from meyerj/patch-1
Browse files Browse the repository at this point in the history
rosconsole: remove extra semicolon in definition of macro ROSCONSOLE_PRINTF_ATTRIBUTE(a, b)
  • Loading branch information
dirk-thomas authored May 16, 2017
2 parents 9e31e64 + d392a94 commit a3505ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/rosconsole/include/ros/console.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

#ifdef __GNUC__
#if __GNUC__ >= 3
#define ROSCONSOLE_PRINTF_ATTRIBUTE(a, b) __attribute__ ((__format__ (__printf__, a, b)));
#define ROSCONSOLE_PRINTF_ATTRIBUTE(a, b) __attribute__ ((__format__ (__printf__, a, b)))
#endif
#endif

Expand Down

0 comments on commit a3505ab

Please sign in to comment.