diff options
author | Haru <haru@dotalux.com> | 2015-10-11 16:22:31 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-10-11 16:22:31 +0200 |
commit | 5fe850132ae05bbf9b4b166f035b672093cc7774 (patch) | |
tree | 41ec952ff8dda13dff2c7aebec137bf56d8e312b /src/common/HPM.c | |
parent | 497510b22278aafaa7dedb8a6c705e8cdd35e9db (diff) | |
download | hercules-5fe850132ae05bbf9b4b166f035b672093cc7774.tar.gz hercules-5fe850132ae05bbf9b4b166f035b672093cc7774.tar.bz2 hercules-5fe850132ae05bbf9b4b166f035b672093cc7774.tar.xz hercules-5fe850132ae05bbf9b4b166f035b672093cc7774.zip |
Fixed various compiler warnings (follow-up to 5c22b63)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/HPM.c')
-rw-r--r-- | src/common/HPM.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/HPM.c b/src/common/HPM.c index 578e90bbc..5373c8b6a 100644 --- a/src/common/HPM.c +++ b/src/common/HPM.c @@ -655,7 +655,7 @@ void hplugins_config_read(void) { libconfig->destroy(&plugins_conf); if (VECTOR_LENGTH(HPM->plugins)) - ShowStatus("HPM: There are '"CL_WHITE"%"PRIuS""CL_RESET"' plugins loaded, type '"CL_WHITE"plugins"CL_RESET"' to list them\n", VECTOR_LENGTH(HPM->plugins)); + ShowStatus("HPM: There are '"CL_WHITE"%d"CL_RESET"' plugins loaded, type '"CL_WHITE"plugins"CL_RESET"' to list them\n", VECTOR_LENGTH(HPM->plugins)); } /** @@ -674,7 +674,7 @@ CPCMD(plugins) return; } - ShowInfo("HPC: There are '"CL_WHITE"%"PRIuS""CL_RESET"' plugins loaded\n", VECTOR_LENGTH(HPM->plugins)); + ShowInfo("HPC: There are '"CL_WHITE"%d"CL_RESET"' plugins loaded\n", VECTOR_LENGTH(HPM->plugins)); for(i = 0; i < VECTOR_LENGTH(HPM->plugins); i++) { struct hplugin *plugin = VECTOR_INDEX(HPM->plugins, i); |