Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lavabit/magma.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
authorLadar Levison <ladar@lavabit.com>2018-09-19 01:58:28 +0300
committerLadar Levison <ladar@lavabit.com>2018-09-19 01:58:28 +0300
commit5e55cefe822aa5db4725e34642ced77f02ff771d (patch)
tree34515def86bff06a26f30b494ffe387473a4f69a /check
parent0ff1488fcbeaf6d3ea15af4cd9ade5e6e9f0c038 (diff)
Fixed a log message typo. Switch from decimal, to int.
Diffstat (limited to 'check')
-rw-r--r--check/magma/servers/camel/camel_check_network.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/check/magma/servers/camel/camel_check_network.c b/check/magma/servers/camel/camel_check_network.c
index 93f811b8..e5dbe730 100644
--- a/check/magma/servers/camel/camel_check_network.c
+++ b/check/magma/servers/camel/camel_check_network.c
@@ -701,9 +701,10 @@ bool_t check_camel_basic_sthread(bool_t secure, stringer_t *errmsg) {
contains_entries[0] = true;
}
}
+
if (!contains_entries[0]) {
- st_sprint(errmsg, "Failed to find folder entry in response. { command # = 6, json = %.*s, folder_id = %d, folder_name = %.*s }",
+ st_sprint(errmsg, "Failed to find folder entry in response. { command # = 6, json = %.*s, folder_id = %i, folder_name = %.*s }",
st_length_int(json), st_char_get(json), folder_ids[0], st_length_int(rand_strs[0]), st_char_get(rand_strs[0]));
json_decref_d(json_objs[0]);
st_free(json);