# HG changeset patch # User Matti Hamalainen # Date 1578915618 -7200 # Node ID 293fce53b5f9253ae4f13583a8075304464b99c6 # Parent 1e7ffcaeb8adac9c7501869431815e9bc030ade2 Rename out label to exit. diff -r 1e7ffcaeb8ad -r 293fce53b5f9 sidinfo.c --- a/sidinfo.c Mon Jan 13 13:38:06 2020 +0200 +++ b/sidinfo.c Mon Jan 13 13:40:18 2020 +0200 @@ -1174,7 +1174,7 @@ // Parse command line arguments if (!th_args_process(argc, argv, optList, optListN, argHandleOpt, NULL, OPTH_ONLY_OPTS)) - goto out; + goto exit; THMSG(2, "Requested output LANG='%s', use charset conversion=%s\n", setChConv.outLang, setChConv.enabled ? "yes" : "no"); @@ -1312,14 +1312,14 @@ // Process files if (!th_args_process(argc, argv, optList, optListN, NULL, argHandleFile, OPTH_ONLY_OTHER)) - goto out; + goto exit; if (optNFiles == 0) { THERR("No filename(s) specified. Try --help.\n"); } -out: +exit: sidutil_chconv_close(&setChConv);