mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-08 01:10:23 +00:00
[windows] kill %zu conversion
This commit is contained in:
parent
bbb778b7de
commit
5e07cf9015
@ -304,7 +304,8 @@ term_emit(const char* seq, FILE* out, bool flush){
|
||||
return -1;
|
||||
}
|
||||
if(ncfputs(seq, out) == EOF){
|
||||
logerror("Error emitting %zub escape (%s)\n", strlen(seq), strerror(errno));
|
||||
logerror("Error emitting %lub escape (%s)\n",
|
||||
(unsigned long)strlen(seq), strerror(errno));
|
||||
return -1;
|
||||
}
|
||||
return flush ? ncflush(out) : 0;
|
||||
|
Loading…
Reference in New Issue
Block a user