From: Ben Pfaff Date: Mon, 27 Jul 2015 05:03:23 +0000 (-0700) Subject: dump: Font section also includes 0x9a where 0x97/0x98/0x99 found. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=77e24639d63946ea93f01b34dc3cfe6fc090faab dump: Font section also includes 0x9a where 0x97/0x98/0x99 found. --- diff --git a/dump.c b/dump.c index a600e41ae7..90c32bf64d 100644 --- a/dump.c +++ b/dump.c @@ -757,8 +757,8 @@ dump_fonts(void) match_byte_assert(0); if (!match_byte(0)) match_byte_assert(1); - if (!match_byte(0x99) && !match_byte(0x98)) - match_byte_assert(0x97); + if (!match_byte(0x97) && !match_byte(0x98) && !match_byte(0x99)) + match_byte_assert(0x9a); match_byte_assert(7); match_byte_assert(0); match_byte_assert(0);