Correct almost all compiler warning issues

This commit is contained in:
RichardHitt
2013-01-19 12:33:16 -08:00
parent a46f89998c
commit 4e0daf047e
11 changed files with 27 additions and 27 deletions

View File

@@ -388,7 +388,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 (userdata == (void *)1) /* nick box is usually on the very bottom, make it centered */
{
gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER);
}