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.
This commit is contained in:
Sebastian Huber
2018-08-03 07:58:07 +02:00
parent 83ca9f0a77
commit 42f9963d1f

View File

@@ -257,7 +257,7 @@
* The name must be a valid designator. * The name must be a valid designator.
*/ */
#define RTEMS_DECLARE_GLOBAL_SYMBOL( _name ) \ #define RTEMS_DECLARE_GLOBAL_SYMBOL( _name ) \
extern char _name[]; extern char _name[]
/** /**
* @brief Defines a global symbol with the specified name and value. * @brief Defines a global symbol with the specified name and value.