summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-02-04 12:40:43 -0500
committerTavian Barnes <tavianator@tavianator.com>2016-02-04 12:40:43 -0500
commit035dbc05163f897ad74487afbb9d6c778b683b61 (patch)
treee99dd0ccd3659b5b1e05e601115ee50e1f8301fe /main.c
parent70fadadf1fc7e1bd09c3d0f451614a678277409c (diff)
downloadbfs-035dbc05163f897ad74487afbb9d6c778b683b61.tar.xz
Don't use typedefs to avoid struct/enum tags.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index b74219f..2c42536 100644
--- a/main.c
+++ b/main.c
@@ -15,7 +15,7 @@
int main(int argc, char *argv[]) {
int ret = EXIT_FAILURE;
- cmdline *cl = parse_cmdline(argc, argv);
+ struct cmdline *cl = parse_cmdline(argc, argv);
if (cl) {
if (eval_cmdline(cl) == 0) {
ret = EXIT_SUCCESS;