forked from Telodendria/Telodendria
Fix error in Log.c where we were comparing different types.
This commit is contained in:
parent
c888fd2ba2
commit
bf0eb4543e
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ struct LogConfig
|
|||
void
|
||||
Log(LogConfig * config, LogLevel level, const char *msg,...)
|
||||
{
|
||||
int i;
|
||||
size_t i;
|
||||
int doColor;
|
||||
char indicator;
|
||||
va_list argp;
|
||||
|
|
Loading…
Reference in a new issue