Fix typo in src/java.c
authorMatthias Runge <mrunge@redhat.com>
Fri, 20 Sep 2019 06:37:37 +0000 (08:37 +0200)
committerMatthias Runge <mrunge@redhat.com>
Fri, 20 Sep 2019 06:37:37 +0000 (08:37 +0200)
The error message did not contain a 'not'

Closes: https://github.com/collectd/collectd/issues/3285

src/java.c

index 41f4909..4da73bb 100644 (file)
@@ -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);