summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_notification.c
diff options
context:
space:
mode:
Diffstat (limited to 'veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_notification.c')
-rw-r--r--veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_notification.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_notification.c b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_notification.c
index 6307dd1..324df28 100644
--- a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_notification.c
+++ b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_notification.c
@@ -405,8 +405,8 @@ void evel_json_encode_notification(EVEL_JSON_BUFFER * jbuf,
evel_json_checkpoint(jbuf);
if (evel_json_open_opt_named_object(jbuf, "additionalFields"))
{
-
- for(unsigned int idx = 0; idx < ht->size; idx++ )
+ unsigned int idx = 0;
+ for(; idx < ht->size; idx++ )
{
/*****************************************************************/
/* Get the first entry of a particular Key and loop through the */
@@ -463,8 +463,8 @@ void evel_json_encode_notification(EVEL_JSON_BUFFER * jbuf,
evel_enc_kv_string(jbuf, "name", ht->hmName);
if (evel_json_open_opt_named_object(jbuf, "hashMap"))
{
-
- for(unsigned int idx = 0; idx < ht->size; idx++ )
+ unsigned int idx = 0;
+ for(; idx < ht->size; idx++ )
{
/*****************************************************************/
/* Get the first entry of a particular Key and loop through the */