Fix error message

This commit is contained in:
Sebastian Ramacher 2018-06-01 21:49:15 +02:00
parent dea3e200ea
commit aa6b9da462

View file

@ -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);
}