changeset 64:40b6e8dca885

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 02 Nov 2012 22:16:31 +0200
parents 5ab4c28b85cd
children 0a260f0c34e5
files th_util.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/th_util.c	Fri Nov 02 22:16:20 2012 +0200
+++ b/th_util.c	Fri Nov 02 22:16:31 2012 +0200
@@ -42,7 +42,7 @@
 }
 
 
-void th_print_banner(FILE *outFile, const char *binName, const char *usage)
+void th_print_banner(FILE *outFile, const char *name, const char *usage)
 {
     fprintf(outFile,
             "\n%s v%s (%s)\n"
@@ -50,7 +50,7 @@
             "%s\n"
             "Usage: %s %s\n",
             th_prog_name, th_prog_version, th_prog_desc,
-            th_prog_author, th_prog_license, binName, usage);
+            th_prog_author, th_prog_license, name, usage);
 }