Fix small bug in tag.h

git-svn-id: svn://kolibrios.org@6377 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
guillem 2016-03-25 16:08:12 +00:00
parent 0b7ac66eda
commit c8e394d8fd

View File

@ -221,8 +221,8 @@ char *unicode_tags[]={
// if not found--> return 0
char get_symbol() {
int i;
debugln(#str);
for (i=0; unicode_tags[i]!=0; i+=2) {}
//debugln(#str);
for (i=0; unicode_tags[i]!=0; i+=2) {
if (strcmp(#str, unicode_tags[i]) == 0) {
//debugval("i: ", i);
return unicode_tags[i+1]);