Fixed incorrect declaraction type of variable 'c' and 'prev_c' in userlog_read()

This commit is contained in:
RElesgoe 2016-08-28 02:33:30 -07:00
parent 049b029a95
commit e2b354387d

View file

@ -175,7 +175,7 @@ namespace pvpgn
std::fseek(fp, 0, SEEK_END);
long pos = std::ftell(fp);
char c = {}, prev_c = {};
int c = {}, prev_c = {};
std::map<long, char*> lines;
long linecount = 0;
char line[MAX_MESSAGE_LEN + 1] = {};