From 42f9963d1f5c8f510c2efb334ce558df2cdc38b3 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 3 Aug 2018 07:58:07 +0200 Subject: score: Remove superfluous semicolon This avoids warnings like this: warning: ISO C does not allow extra ';' outside of a function [-Wpedantic] RTEMS_DECLARE_GLOBAL_SYMBOL( abc ); ^ Update #3459. --- cpukit/include/rtems/score/basedefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/include/rtems/score/basedefs.h b/cpukit/include/rtems/score/basedefs.h index 679f4bd1b4..fd803e1b45 100644 --- a/cpukit/include/rtems/score/basedefs.h +++ b/cpukit/include/rtems/score/basedefs.h @@ -257,7 +257,7 @@ * The name must be a valid designator. */ #define RTEMS_DECLARE_GLOBAL_SYMBOL( _name ) \ - extern char _name[]; + extern char _name[] /** * @brief Defines a global symbol with the specified name and value. -- cgit v1.2.3