From: Matthias Runge Date: Fri, 20 Sep 2019 06:37:37 +0000 (+0200) Subject: Fix typo in src/java.c X-Git-Tag: 5.10.0~10^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F3286%2Fhead;p=thirdparty%2Fcollectd.git Fix typo in src/java.c The error message did not contain a 'not' Closes: https://github.com/collectd/collectd/issues/3285 --- diff --git a/src/java.c b/src/java.c index 41f49092c..4da73bbbb 100644 --- a/src/java.c +++ b/src/java.c @@ -2076,7 +2076,7 @@ static int cjni_config_load_plugin(oconfig_item_t *ci) /* {{{ */ class->object = NULL; if (class->object == NULL) { ERROR("java plugin: cjni_config_load_plugin: " - "Could create a new `%s' object.", + "Could not create a new `%s' object.", class->name); cjni_thread_detach(); free(class->name);