From 82a125a3c3bd0da0bf6545b7fe28c64f7a85f4ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sun, 21 Sep 2014 01:08:20 +0200 Subject: [PATCH] Fix error message --- ponymap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponymap.c b/ponymap.c index ddeb188..2d08d98 100644 --- a/ponymap.c +++ b/ponymap.c @@ -836,7 +836,7 @@ load_one_plugin (struct app_context *ctx, const char *name, const char *path) name, "cannot find plugin info"); else if (info->api_version != API_VERSION) print_error ("could not load `%s': %s", - name, "cannot find plugin info"); + name, "incompatible API version"); else if (!info->initialize (ctx, &g_plugin_vtable)) print_error ("could not load `%s': %s", name, "plugin initialization failed");