changeset 335:293fce53b5f9

Rename out label to exit.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 13 Jan 2020 13:40:18 +0200
parents 1e7ffcaeb8ad
children 5c2e77ec45e8
files sidinfo.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);