aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzblctrl.c
diff options
context:
space:
mode:
authorGravatar Dequis <dx@dxzone.com.ar>2009-06-20 01:17:43 -0300
committerGravatar Dequis <dx@dxzone.com.ar>2009-06-20 01:17:43 -0300
commitf70e2d36a664c9571eeb520341d18246fb4170cb (patch)
tree50dc7ea9b7be1752bf71cf392441f9f65812521f /uzblctrl.c
parentfedfe2c06b3e01d5dede2cbab395a0ab48bb94e9 (diff)
parent8f7064b6a91d3b253e62f303a3793613a55d3631 (diff)
Merge commit 'dieterbe/experimental' into experimental
Conflicts solved: uzbl.c
Diffstat (limited to 'uzblctrl.c')
-rw-r--r--uzblctrl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uzblctrl.c b/uzblctrl.c
index a4fcf1d..93584bc 100644
--- a/uzblctrl.c
+++ b/uzblctrl.c
@@ -23,7 +23,7 @@ static GOptionEntry entries[] =
int
main(int argc, char* argv[]) {
GError *error = NULL;
- GOptionContext* context = g_option_context_new ("- utility for controlling and interacting with uzbl through its socket file"); //TODO: get stuff back from uzbl
+ GOptionContext* context = g_option_context_new ("- utility for controlling and interacting with uzbl through its socket file"); /* TODO: get stuff back from uzbl */
g_option_context_add_main_entries (context, entries, NULL);
g_option_context_add_group (context, gtk_get_option_group (TRUE));
g_option_context_parse (context, &argc, &argv, &error);
@@ -64,7 +64,7 @@ main(int argc, char* argv[]) {
return 0;
} else {
- puts ("Usage: uzblctrl -s /path/to/socket -c \"command\"");
+ fprintf(stderr, "Usage: uzblctrl -s /path/to/socket -c \"command\"");
return 1;
}
}