diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2013-05-11 04:17:39 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2013-05-11 04:17:39 +0200 |
commit | 8ab74e16d7bc203ef277d72fd41a1fdb4e787c01 (patch) | |
tree | 6f47fca29da1e5f1cfe46be53386201106141139 /src | |
parent | 1e0d43ef656493e4dd9de7ac55b6d04625adce2c (diff) | |
download | tdv-8ab74e16d7bc203ef277d72fd41a1fdb4e787c01.tar.gz tdv-8ab74e16d7bc203ef277d72fd41a1fdb4e787c01.tar.xz tdv-8ab74e16d7bc203ef277d72fd41a1fdb4e787c01.zip |
Rename the project
Diffstat (limited to 'src')
-rw-r--r-- | src/sdtui.c (renamed from src/sdcli.c) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sdcli.c b/src/sdtui.c index 8a8f4ca..e6cc058 100644 --- a/src/sdcli.c +++ b/src/sdtui.c @@ -1,5 +1,5 @@ /* - * StarDict console UI + * StarDict terminal UI * * Copyright (c) 2013, Přemysl Janouch <p.janouch@gmail.com> * All rights reserved. @@ -214,11 +214,11 @@ main (int argc, char *argv[]) abort (); GError *error = NULL; - GOptionContext *ctx = g_option_context_new ("- StarDict console UI"); + GOptionContext *ctx = g_option_context_new ("- StarDict terminal UI"); g_option_context_add_main_entries (ctx, entries, NULL); if (!g_option_context_parse (ctx, &argc, &argv, &error)) { - g_print ("option parsing failed: %s\n", error->message); + g_printerr ("Error: option parsing failed: %s\n", error->message); exit (EXIT_FAILURE); } |