From 5e0458cb65d9e99e1fcb2b012ea2ff39f255ba6f Mon Sep 17 00:00:00 2001 From: "Schaich, Alonso" Date: Fri, 1 Dec 2023 07:52:12 +0900 Subject: [PATCH] Unconditionaly include In `debug_print_escape`, `sprintf` is used invariant of `ZINT_TEST` being defined or not, therefore the definition for `sprintf` also has to be imported invariant of `ZINT_TEST` --- backend/common.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/common.c b/backend/common.c index 339e8a81..cb6eab48 100644 --- a/backend/common.c +++ b/backend/common.c @@ -31,9 +31,7 @@ /* SPDX-License-Identifier: BSD-3-Clause */ #include -#ifdef ZINT_TEST #include -#endif #include "common.h" /* Converts a character 0-9, A-F to its equivalent integer value */