imx6: wandboard: fix dwc_ahsata build errors when DM enabled
[oweals/u-boot.git] / lib / vsprintf.c
index de5db1aa5c7f4eef2d8a6aebecef23c05fb43fe5..1b6c154d8d722215767a7cef1c850850dda6088a 100644 (file)
@@ -288,6 +288,8 @@ static char *string16(char *buf, char *end, u16 *s, int field_width,
        for (i = 0; i < len && buf + utf16_utf8_strnlen(str, 1) <= end; ++i) {
                s32 s = utf16_get(&str);
 
+               if (s < 0)
+                       s = '?';
                utf8_put(s, &buf);
        }
        for (; len < field_width; --field_width)