newt: print errors to stderr

This commit is contained in:
Joe Bryan 2020-06-04 11:09:50 -07:00
parent 27a9dbe1c0
commit 4cfaf08348

View File

@ -87,7 +87,7 @@ _newt_gain_mess(u3_moat* mot_u)
// very likely to be a bad write, we can't jam anything this big
//
if ( 0xFFFFFFFFULL < nel_d ) {
u3l_log("newt: %d warn: large read %" PRIu64 "\r\n",
fprintf(stderr, "newt: %d warn: large read %" PRIu64 "\r\n",
getpid(),
nel_d);
}
@ -316,7 +316,7 @@ _newt_write_cb(uv_write_t* wri_u, c3_i sas_i)
c3_free(req_u);
if ( 0 != sas_i ) {
u3l_log("newt: bad write %d\r\n", sas_i);
fprintf(stderr, "newt: bad write %d\r\n", sas_i);
moj_u->bal_f(vod_p, uv_strerror(sas_i));
}
}