compact win32 errno logging

This commit is contained in:
Igor Sysoev 2008-12-09 17:41:17 +00:00
parent c9aae14a7e
commit a70d3962bb
2 changed files with 4 additions and 17 deletions

View File

@ -127,18 +127,10 @@ ngx_log_error_core(ngx_uint_t level, ngx_log_t *log, ngx_err_t err,
} }
#if (NGX_WIN32) #if (NGX_WIN32)
p = ngx_snprintf(p, last - p, ((unsigned) err < 0x80000000)
if ((unsigned) err >= 0x80000000) { ? " (%d: " : " (%Xd: ", err);
p = ngx_snprintf(p, last - p, " (%Xd: ", err);
} else {
p = ngx_snprintf(p, last - p, " (%d: ", err);
}
#else #else
p = ngx_snprintf(p, last - p, " (%d: ", err); p = ngx_snprintf(p, last - p, " (%d: ", err);
#endif #endif
p = ngx_strerror_r(err, p, last - p); p = ngx_strerror_r(err, p, last - p);

View File

@ -36,13 +36,8 @@ ngx_message_box(char *title, ngx_uint_t type, ngx_err_t err,
*p++ = '.'; *p++ = '.';
} }
if ((unsigned) err >= 0x80000000) { p = ngx_snprintf(p, last - p, ((unsigned) err < 0x80000000)
p = ngx_snprintf(p, last - p, " (%Xd: ", err); ? " (%d: " : " (%Xd: ", err);
} else {
p = ngx_snprintf(p, last - p, " (%d: ", err);
}
p = ngx_strerror_r(err, p, last - p); p = ngx_strerror_r(err, p, last - p);
if (p < last) { if (p < last) {