Fixed incorrect declaraction type of variable 'c' and 'prev_c' in userlog_read()
This commit is contained in:
parent
049b029a95
commit
e2b354387d
1 changed files with 1 additions and 1 deletions
|
@ -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] = {};
|
||||
|
|
Loading…
Reference in a new issue