aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormutantturkey <crazycal00@gmail.com>2011-05-01 12:58:54 -0400
committermutantturkey <crazycal00@gmail.com>2011-05-01 12:58:54 -0400
commitd45b417d5fb8bc5cfd46dfd0b87404c248ab474b (patch)
tree35c0e1300d6e6bdd2a8defdce5846163ed0d3fc9
parent39664b1963bd6ffac88d9fa8b822055b61d23749 (diff)
removed a useless puts
-rw-r--r--sb.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sb.c b/sb.c
index 21e43f6..900961e 100644
--- a/sb.c
+++ b/sb.c
@@ -131,7 +131,6 @@ if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(w.notebook)) == 0) { gtk_main_quit();
static void cb_download(WebKitWebView *web_view, GObject *d, gpointer user_data) {
const gchar *c = webkit_download_get_uri(WEBKIT_DOWNLOAD(d));
gchar *command = g_strconcat(DEFAULT_DOWNLOAD, g_get_home_dir(), "/ ", g_strdup(c), NULL);
-puts(command);
g_spawn_command_line_async(command, NULL);
g_free(command);
}