diff options
author | Igor Sysoev <igor@sysoev.ru> | 2018-06-25 16:56:45 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2018-06-25 16:56:45 +0300 |
commit | 606eda045bc3608977648fb1de61d8e328984d30 (patch) | |
tree | cb24949d225133bd34f243e2445d7ba9cadfcbdf /src/nxt_sprintf.c | |
parent | 1a52d876f7e10d07f58deee6faeaf70a11a6110f (diff) | |
download | unit-606eda045bc3608977648fb1de61d8e328984d30.tar.gz unit-606eda045bc3608977648fb1de61d8e328984d30.tar.bz2 |
Removed '\r' and '\n' artifact macros.
Diffstat (limited to 'src/nxt_sprintf.c')
-rw-r--r-- | src/nxt_sprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_sprintf.c b/src/nxt_sprintf.c index f2e2b414..0b387883 100644 --- a/src/nxt_sprintf.c +++ b/src/nxt_sprintf.c @@ -522,7 +522,7 @@ nxt_vsprintf(u_char *buf, u_char *end, const char *fmt, va_list args) continue; case 'n': - *buf++ = NXT_LF; + *buf++ = '\n'; fmt++; continue; |