Second tex_parser() successful pass :)

This commit is contained in:
Kolan Sh 2011-06-20 20:16:37 +04:00
parent ba84015079
commit c1638e027d
1 changed files with 3 additions and 3 deletions

View File

@ -127,9 +127,9 @@ int parse_table(const char *table_source, size_t len, struct table_s *table, str
} else if (isspace(c)) {
} else {
error->code = -1;
error->message = PARSING_ERROR;
return -1;
error->code = -1;
error->message = PARSING_ERROR;
return -1;
}
break;