commit 577dceb262fb6107ee0e49cf45dec5870266d26b parent f25cc39727fde93df715c59b8f6d4d31cdfcc2bd Author: Christian Grothoff <christian@grothoff.org> Date: Sun, 16 Nov 2025 14:35:06 +0100 -fix warning Diffstat:
| M | src/testing/testing_api_cmd_get_product_image.c | | | 10 | +++++----- |
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/testing/testing_api_cmd_get_product_image.c b/src/testing/testing_api_cmd_get_product_image.c @@ -135,17 +135,17 @@ get_product_image_run (void *cls, gis->expected_image = NULL; if (NULL != gis->product_reference) { - product_cmd = TALER_TESTING_interpreter_lookup_command (is, - gis-> - product_reference); + const char *product_image; + + product_cmd = TALER_TESTING_interpreter_lookup_command ( + is, + gis->product_reference); if (NULL == product_cmd) { GNUNET_break (0); TALER_TESTING_interpreter_fail (is); return; } - const char *product_image; - if (GNUNET_OK != TALER_TESTING_get_trait_product_image (product_cmd, &product_image))