aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-25 16:47:22 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-25 16:47:22 +0200
commitde790af53e5daea83ab046a6ef02859ae88596e2 (patch)
treee7bdd9cefa381aa04bd33aeab9922237f794e21a /uzbl.c
parent9bdb2879ad9a8983369b51f3e70617387ce597bf (diff)
make output format bit more uniform
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/uzbl.c b/uzbl.c
index 7499062..b3142cd 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -130,7 +130,7 @@ static void
printf ("Possible error creating fifo\n");
}
- printf ("Opened control fifo in %s\n", fifopath);
+ printf ("ontrol fifo opened in %s\n", fifopath);
while (true)
{
@@ -336,7 +336,7 @@ int main (int argc, char* argv[])
}
history_file = g_key_file_get_value (config, "behavior", "history_file", NULL);
if(history_file) {
- printf("setting history file to: %s\n",history_file);
+ printf("history file: %s\n",history_file);
} else {
printf("history logging disabled\n");
}
@@ -362,8 +362,8 @@ int main (int argc, char* argv[])
gtk_widget_grab_focus (GTK_WIDGET (web_view));
gtk_widget_show_all (main_window);
xwin = GDK_WINDOW_XID (GTK_WIDGET (main_window)->window);
- printf("My X window id is %i\n",(int) xwin);
-
+ printf("window_id %i\n",(int) xwin);
+ printf("pid %i\n", getpid ());
setup_commands ();
setup_threading ();