LSL5 no longer throws an assertion after the intro

svn-id: r39368
This commit is contained in:
Filippos Karapetis 2009-03-13 01:36:07 +00:00
parent 6751eace05
commit f4eb159eb8

View file

@ -414,7 +414,7 @@ static int is_print_str(char *str) {
if (len == 0) return 1;
while (*str) {
if (isprint(*str)) printable++;
if (isprint((*str & 0xFF))) printable++;
str++;
}