rm redundant cast

This commit is contained in:
Daniel Micay 2012-09-22 02:01:07 -04:00
parent 9a16b6e6fd
commit 2202d24468
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ static void launch_url(const char *text, search_panel_info *info) {
if (!errno && end != text && *end == '\0' && id && id <= info->url_list.size()) {
browser_cmd[1] = info->url_list[id - 1].url;
g_spawn_async(NULL, (char **)browser_cmd, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL);
g_spawn_async(NULL, browser_cmd, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL);
} else {
g_printerr("url hint invalid\n");
}