Output the unknown value as a number not a character. b=474800 r=dbaron

This commit is contained in:
Mats Palmgren 2010-04-27 18:15:02 +02:00
Родитель f00d5e98e8
Коммит bd011bef40
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -321,7 +321,7 @@ static int get_tmevent(FILE *fp, tmevent *event)
#endif
break;
default:
fprintf(stderr, "Unknown event type %c\n", event->type);
fprintf(stderr, "Unknown event type 0x%x\n", (unsigned int)event->type);
return 0;
}
return 1;