summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-09-30 14:53:54 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-09-30 14:54:27 +0200
commitc6bd860f1353329f504337f6ce60f3a9523d5ce0 (patch)
treec9b3fde5c0f30128331abeeaf3296a1b13fd973f
parentvalidation: Remove unused test suite (diff)
downloadrtems-c6bd860f1353329f504337f6ce60f3a9523d5ce0.tar.bz2
rtems: Fix format
-rw-r--r--cpukit/include/rtems/rtems/intr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/include/rtems/rtems/intr.h b/cpukit/include/rtems/rtems/intr.h
index e37234a79f..021b9e3e94 100644
--- a/cpukit/include/rtems/rtems/intr.h
+++ b/cpukit/include/rtems/rtems/intr.h
@@ -1035,7 +1035,7 @@ typedef struct rtems_interrupt_entry {
* initialize an interrupt entry.
*/
#define RTEMS_INTERRUPT_ENTRY_INITIALIZER( _routine, _arg, _info ) \
- { _routine, _arg, NULL, _info }
+ { _routine, _arg, NULL, _info }
/* Generated from spec:/rtems/intr/if/entry-initialize */