changeset 36083:3705b6e4ba07

Be more precise about type.
author ib
date Mon, 29 Apr 2013 10:30:41 +0000
parents bb41e924fea9
children 64825e4a3fed
files gui/dialog/url.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gui/dialog/url.c	Mon Apr 29 10:28:18 2013 +0000
+++ b/gui/dialog/url.c	Mon Apr 29 10:30:41 2013 +0000
@@ -46,11 +46,11 @@
     (void)button;
 
     if (user_data) {
-        gchar *str = strdup(gtk_entry_get_text(GTK_ENTRY(urlEntry)));
+        char *str = strdup(gtk_entry_get_text(GTK_ENTRY(urlEntry)));
 
         if (str) {
             if (!strstr(str, "://")) {
-                gchar *tmp;
+                char *tmp;
 
                 tmp = malloc(strlen(str) + 8);
                 sprintf(tmp, "http://%s", str);