From b4f059391ae67f0f0a925db2d88e48583e5f5cd7 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 5 Oct 2012 12:45:17 -0400 Subject: [PATCH] fix url hint invalid error --- termite.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termite.cc b/termite.cc index a23804b..e9efe4d 100644 --- a/termite.cc +++ b/termite.cc @@ -147,7 +147,7 @@ static void launch_url(const char *text, search_panel_info *info) { if (!errno && end != text && id && id <= info->url_list.size()) { launch_browser(info->url_list[id - 1].url.get()); } else { - g_printerr("url hint invalid: %s\n", text); + g_printerr("url hint invalid: %s\n", token); } } }