Author: hailfinger Date: 2009-03-20 00:29:20 +0100 (Fri, 20 Mar 2009) New Revision: 1160
Modified: coreboot-v3/lib/vtxprintf.c Log: Fix evil typo resulting in a compile failure. Signed-off-by: Carl-Daniel Hailfinger <[email protected]> Acked-by: Carl-Daniel Hailfinger <[email protected]> Modified: coreboot-v3/lib/vtxprintf.c =================================================================== --- coreboot-v3/lib/vtxprintf.c 2009-03-19 13:34:53 UTC (rev 1159) +++ coreboot-v3/lib/vtxprintf.c 2009-03-19 23:29:20 UTC (rev 1160) @@ -202,7 +202,7 @@ len = strnlen(s, precision); for (i = 0; i < len; ++i) - if (!isprint(*s[i])) { + if (!isprint(s[i])) { s = "<non-ASCII characters>"; len = strlen(s); break; -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

