summaryrefslogtreecommitdiff
path: root/futility/futility.h
diff options
context:
space:
mode:
Diffstat (limited to 'futility/futility.h')
-rw-r--r--futility/futility.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/futility/futility.h b/futility/futility.h
index ed268905..c94ce734 100644
--- a/futility/futility.h
+++ b/futility/futility.h
@@ -12,9 +12,9 @@
Here's a structure to define the commands that futility implements.
*/
typedef struct {
- const char const * name;
+ const char * const name;
int (*handler)(int argc, char **argv);
- const char const * shorthelp;
+ const char * const shorthelp;
} __attribute__ ((aligned (16))) futil_cmd_t ; /* align for x86_64 ABI */
/*