summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gpxe/command.h')
-rw-r--r--src/include/gpxe/command.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/gpxe/command.h b/src/include/gpxe/command.h
index 5d8057ab5..ee270dfdd 100644
--- a/src/include/gpxe/command.h
+++ b/src/include/gpxe/command.h
@@ -17,6 +17,8 @@ struct command {
int ( * exec ) ( int argc, char **argv );
};
-#define __command __table ( struct command, commands, 01 )
+#define COMMANDS "commands"
+
+#define __command __table ( struct command, COMMANDS, 01 )
#endif /* _GPXE_COMMAND_H */