diff options
author | nicm <nicm> | 2015-12-13 21:53:57 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-12-13 21:53:57 +0000 |
commit | ecfeee2e8255a77f82a07124c93c8dbc7683c421 (patch) | |
tree | 9203458cd986398219f89c635b0583c8144b6cda /cmd-source-file.c | |
parent | 899bee0056b2d90b1c40c800473014b458ebd63d (diff) | |
download | rtmux-ecfeee2e8255a77f82a07124c93c8dbc7683c421.tar.gz rtmux-ecfeee2e8255a77f82a07124c93c8dbc7683c421.tar.bz2 rtmux-ecfeee2e8255a77f82a07124c93c8dbc7683c421.zip |
Use member names in cmd_entry definitions so I stop getting confused
about the order.
Diffstat (limited to 'cmd-source-file.c')
-rw-r--r-- | cmd-source-file.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/cmd-source-file.c b/cmd-source-file.c index e776712c..9d2d6d68 100644 --- a/cmd-source-file.c +++ b/cmd-source-file.c @@ -31,11 +31,14 @@ enum cmd_retval cmd_source_file_exec(struct cmd *, struct cmd_q *); void cmd_source_file_done(struct cmd_q *); const struct cmd_entry cmd_source_file_entry = { - "source-file", "source", - "", 1, 1, - "path", - 0, - cmd_source_file_exec + .name = "source-file", + .alias = "source", + + .args = { "", 1, 1 }, + .usage = "path", + + .flags = 0, + .exec = cmd_source_file_exec }; enum cmd_retval |