diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-10-12 01:25:10 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-10-12 02:39:16 +0200 |
commit | 3d53b2c131914da48fe8873f4133995bd42dbdcc (patch) | |
tree | 0d900bc116acee50b6ae467e548b3e8e84175983 /src/tabfile.c | |
parent | 627c296057a91e73d3cd1631caa1e61ad4f2d124 (diff) | |
download | tdv-3d53b2c131914da48fe8873f4133995bd42dbdcc.tar.gz tdv-3d53b2c131914da48fe8873f4133995bd42dbdcc.tar.xz tdv-3d53b2c131914da48fe8873f4133995bd42dbdcc.zip |
Fix g_option_context_get_help() usage
Diffstat (limited to 'src/tabfile.c')
-rw-r--r-- | src/tabfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabfile.c b/src/tabfile.c index fa67303..11ce4e8 100644 --- a/src/tabfile.c +++ b/src/tabfile.c @@ -179,7 +179,7 @@ main (int argc, char *argv[]) if (!g_option_context_parse (ctx, &argc, &argv, &error)) fatal ("Error: option parsing failed: %s\n", error->message); if (argc != 2) - fatal ("%s", g_option_context_get_help (ctx, TRUE, FALSE)); + fatal ("%s", g_option_context_get_help (ctx, TRUE, NULL)); g_option_context_free (ctx); template.version = SD_VERSION_3_0_0; |