From b0f2ba410dbb19d1e3925aa8e62521901c6e2eef Mon Sep 17 00:00:00 2001 From: zoltanvb Date: Sun, 5 Nov 2023 13:55:35 +0100 Subject: [PATCH] Small fixes for signedness warnings. --- accessibility.h | 2 +- tasks/task_translation.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/accessibility.h b/accessibility.h index f52e6f4676e7..1d1c2a7adfe8 100644 --- a/accessibility.h +++ b/accessibility.h @@ -55,7 +55,7 @@ typedef struct /* Frame captured during the last call to the translation service */ uint8_t *last_image; - int last_image_size; + unsigned last_image_size; /* 1 if the automatic mode has been enabled, 0 otherwise */ int ai_service_auto; diff --git a/tasks/task_translation.c b/tasks/task_translation.c index fafe3c29c50e..715316e0a883 100644 --- a/tasks/task_translation.c +++ b/tasks/task_translation.c @@ -598,7 +598,7 @@ static access_response_t* parse_response_json(http_transfer_data_t *data) if (type == RJSON_STRING && (rjson_get_context_count(json) & 1) == 1) { - int i; + unsigned i; string = rjson_get_string(json, &length); for (i = 0; i < ARRAY_SIZE(ACCESS_RESPONSE_KEYS) && key == -1; i++) { @@ -1094,7 +1094,7 @@ static void translation_response_input(access_response_t *response) #ifdef HAVE_ACCESSIBILITY else { - int i = 0; + unsigned i = 0; bool found = false; for (; i < ARRAY_SIZE(ACCESS_INPUT_LABELS) && !found; i++)