diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-09-21 01:08:20 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-09-21 01:08:20 +0200 |
commit | 82a125a3c3bd0da0bf6545b7fe28c64f7a85f4ed (patch) | |
tree | dd96473d3b78e11e9c5ab6aac1e03e74922466c6 | |
parent | 7a7c32aec0f65d45a01d8b0e3534b85a7f3086c0 (diff) | |
download | ponymap-82a125a3c3bd0da0bf6545b7fe28c64f7a85f4ed.tar.gz ponymap-82a125a3c3bd0da0bf6545b7fe28c64f7a85f4ed.tar.xz ponymap-82a125a3c3bd0da0bf6545b7fe28c64f7a85f4ed.zip |
Fix error message
-rw-r--r-- | ponymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |