mkimage: Fix "different signs comparison" build error

When building mkimage, clang shows next builderror:

    external/u-boot/common/bootm.c:978:16:
    error: comparison of integers of different signs:
    'int' and 'unsigned long' [-Werror,-Wsign-compare]
            for (i = 0; i < ARRAY_SIZE(image_types); i++) {
                        ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~

Let's suppress checking for -Wsign-compare to fix that.

Change-Id: Ibddde1a0976f958724a97c31a82da79728d2c0e0
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
1 file changed