summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_runtime.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2018-06-25 16:56:45 +0300
committerIgor Sysoev <igor@sysoev.ru>2018-06-25 16:56:45 +0300
commit606eda045bc3608977648fb1de61d8e328984d30 (patch)
treecb24949d225133bd34f243e2445d7ba9cadfcbdf /src/nxt_runtime.c
parent1a52d876f7e10d07f58deee6faeaf70a11a6110f (diff)
downloadunit-606eda045bc3608977648fb1de61d8e328984d30.tar.gz
unit-606eda045bc3608977648fb1de61d8e328984d30.tar.bz2
Removed '\r' and '\n' artifact macros.
Diffstat (limited to 'src/nxt_runtime.c')
-rw-r--r--src/nxt_runtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_runtime.c b/src/nxt_runtime.c
index b72cd7d8..4923c965 100644
--- a/src/nxt_runtime.c
+++ b/src/nxt_runtime.c
@@ -1233,7 +1233,7 @@ nxt_runtime_pid_file_create(nxt_task_t *task, nxt_file_name_t *pid_file)
ssize_t length;
nxt_int_t n;
nxt_file_t file;
- u_char pid[NXT_INT64_T_LEN + NXT_LINEFEED_SIZE];
+ u_char pid[NXT_INT64_T_LEN + nxt_length("\n")];
nxt_memzero(&file, sizeof(nxt_file_t));