From aa6b9da462c9ac2478323ac73db3b8a63578a96c Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 1 Jun 2018 21:49:15 +0200 Subject: [PATCH] Fix error message --- zathura/links.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/links.c b/zathura/links.c index 93e5ed3..92502b9 100644 --- a/zathura/links.c +++ b/zathura/links.c @@ -260,7 +260,7 @@ link_remote(zathura_t* zathura, const char* file) GError* error = NULL; if (g_spawn_async(NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, &error) == FALSE) { - girara_error("Failed to execute synctex command: %s", error->message); + girara_error("Failed to execute command: %s", error->message); g_error_free(error); }