ncdirect_flush: remove dead store

pull/1321/head
nick black 4 years ago
parent 659df1725b
commit e9cd118525
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -1070,8 +1070,7 @@ bool ncdirect_canutf8(const ncdirect* n){
}
int ncdirect_flush(const ncdirect* nc){
int r;
while((r = fflush(nc->ttyfp)) == EOF){
while(fflush(nc->ttyfp) == EOF){
if(errno != EAGAIN){
return -1;
}

Loading…
Cancel
Save