From 14193fcf7c0529eaed7b6197bde976a900db8415 Mon Sep 17 00:00:00 2001 From: Gokul Singaraju Date: Sun, 10 Jun 2018 13:46:56 -0400 Subject: Implement sequencing for faults only Issue-ID: CERT-14 Change-Id: I3f78eb87cc4c6fba3e4fb8d2fe91d31187b4f7f7 Signed-off-by: Gokul Singaraju --- vnfs/VES5.0/evel/evel-library/code/evel_library/evel_other.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vnfs/VES5.0/evel/evel-library/code/evel_library/evel_other.c') diff --git a/vnfs/VES5.0/evel/evel-library/code/evel_library/evel_other.c b/vnfs/VES5.0/evel/evel-library/code/evel_library/evel_other.c index 360f5b91..5f59c1df 100644 --- a/vnfs/VES5.0/evel/evel-library/code/evel_library/evel_other.c +++ b/vnfs/VES5.0/evel/evel-library/code/evel_library/evel_other.c @@ -359,7 +359,7 @@ void evel_json_encode_other(EVEL_JSON_BUFFER * jbuf, { evel_json_open_object(jbuf); evel_enc_kv_object(jbuf, "objectInstance", jsonobjinst->jsonstring); - evel_enc_kv_ull(jbuf, "objectInstanceEpochMicrosec", jsonobjinst->objinst_epoch_microsec); + evel_enc_kv_opt_ull(jbuf, "objectInstanceEpochMicrosec", &jsonobjinst->objinst_epoch_microsec); //evel_json_checkpoint(jbuf); if (evel_json_open_opt_named_list(jbuf, "objectKeys")) { -- cgit 1.2.3-korg