summary refs log tree commit diff stats
path: root/src/fe-gtk/gtkutil.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-30 21:25:58 +0100
committerBerke Viktor <bviktor@hexchat.org>2012-10-30 21:25:58 +0100
commitcb0f6c8c91b564e541688b3f0f57d8456295dc1f (patch)
tree0ac1427e1d3a18ae152bd1d34f424c6db7759479 /src/fe-gtk/gtkutil.c
parent284dbfbe3dc37e94b57e110b6ea23f847b9f6035 (diff)
Eliminate some more warnings
Diffstat (limited to 'src/fe-gtk/gtkutil.c')
-rw-r--r--src/fe-gtk/gtkutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/gtkutil.c b/src/fe-gtk/gtkutil.c
index adaa48db..46958cf9 100644
--- a/src/fe-gtk/gtkutil.c
+++ b/src/fe-gtk/gtkutil.c
@@ -573,7 +573,7 @@ fe_get_str (char *msg, char *def, void *callback, void *userdata)
 										NULL);
 	gtk_box_set_homogeneous (GTK_BOX (GTK_DIALOG (dialog)->vbox), TRUE);
 
-	if ((int*) userdata == 1)	/* nick box is usually on the very bottom, make it centered */
+	if ((int) userdata == 1)	/* nick box is usually on the very bottom, make it centered */
 	{
 		gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER);
 	}