summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c
diff options
context:
space:
mode:
Diffstat (limited to 'veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c')
-rw-r--r--veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c
index d0d31dd..abda05e 100644
--- a/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c
+++ b/veslibrary/ves_clibrary/evel/evel-library/code/evel_library/evel_scaling_measurement.c
@@ -5107,8 +5107,8 @@ void evel_json_encode_measurement(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 */
@@ -5656,7 +5656,8 @@ void evel_json_encode_measurement(EVEL_JSON_BUFFER * jbuf,
evel_json_checkpoint(jbuf);
if (evel_json_open_opt_named_object(jbuf, "featureUsageArray"))
{
- 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 */
@@ -5755,8 +5756,8 @@ void evel_json_encode_measurement(EVEL_JSON_BUFFER * jbuf,
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 */