Index: xfce4-weather-plugin-0.7.3/panel-plugin/weather-icon.c =================================================================== --- xfce4-weather-plugin-0.7.3/panel-plugin/weather-icon.c.orig +++ xfce4-weather-plugin-0.7.3/panel-plugin/weather-icon.c @@ -23,6 +23,7 @@ #include #include +#include #include "weather-icon.h" Index: xfce4-weather-plugin-0.7.3/panel-plugin/weather-search.c =================================================================== --- xfce4-weather-plugin-0.7.3/panel-plugin/weather-search.c.orig +++ xfce4-weather-plugin-0.7.3/panel-plugin/weather-search.c @@ -509,7 +509,7 @@ gboolean weather_search_by_ip( geolocation_data *data; if (!gui_cb) - return; + return FALSE; data = g_new0(geolocation_data, 1); data->cb = gui_cb; @@ -520,5 +520,5 @@ gboolean weather_search_by_ip( weather_http_receive_data ("ipinfodb.com", "/ip_query.php", proxy_host, proxy_port, cb_geolocation, data); - + return TRUE; }