summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_sprintf.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2017-02-01 19:20:07 +0300
committerIgor Sysoev <igor@sysoev.ru>2017-02-01 19:20:07 +0300
commit6e67bee0f4f96ad0a7d1a231dfdae8431714c66a (patch)
treec422698ab3b7828f7346ca18e1f5a1b8305ed769 /src/nxt_sprintf.c
parent8942550b13515e54aff9d682bec3da45ade26e18 (diff)
downloadunit-6e67bee0f4f96ad0a7d1a231dfdae8431714c66a.tar.gz
unit-6e67bee0f4f96ad0a7d1a231dfdae8431714c66a.tar.bz2
nxt_str_t changes.
Diffstat (limited to 'src/nxt_sprintf.c')
-rw-r--r--src/nxt_sprintf.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/nxt_sprintf.c b/src/nxt_sprintf.c
index 837d2635..8aefaa50 100644
--- a/src/nxt_sprintf.c
+++ b/src/nxt_sprintf.c
@@ -101,7 +101,7 @@ nxt_vsprintf(u_char *buf, u_char *end, const char *fmt, va_list args)
u_char *p;
int d;
double f, i;
- size_t len;
+ size_t length;
int64_t i64;
uint64_t ui64, frac;
nxt_str_t *v;
@@ -143,8 +143,8 @@ nxt_vsprintf(u_char *buf, u_char *end, const char *fmt, va_list args)
v = va_arg(args, nxt_str_t *);
if (nxt_fast_path(v != NULL)) {
- len = v->len;
- p = v->data;
+ length = v->length;
+ p = v->start;
goto copy;
}
@@ -163,7 +163,7 @@ nxt_vsprintf(u_char *buf, u_char *end, const char *fmt, va_list args)
continue;
case '*':
- len = va_arg(args, u_int);
+ length = va_arg(args, u_int);
fmt++;
@@ -380,13 +380,13 @@ nxt_vsprintf(u_char *buf, u_char *end, const char *fmt, va_list args)
if (nxt_slow_path(isnan(f))) {
p = (u_char *) nan;
- len = sizeof(nan) - 1;
+ length = sizeof(nan) - 1;
goto copy;
} else if (nxt_slow_path(isinf(f))) {
p = (u_char *) infinity;
- len = sizeof(infinity) - 1;
+ length = sizeof(infinity) - 1;
goto copy;
}
@@ -555,7 +555,7 @@ nxt_vsprintf(u_char *buf, u_char *end, const char *fmt, va_list args)
copy:
- buf = nxt_cpymem(buf, p, nxt_min((size_t) (end - buf), len));
+ buf = nxt_cpymem(buf, p, nxt_min((size_t) (end - buf), length));
continue;
}
@@ -567,7 +567,7 @@ static u_char *
nxt_integer(nxt_sprintf_t *spf, u_char *buf, uint64_t ui64)
{
u_char *p, *end;
- size_t len;
+ size_t length;
u_char temp[NXT_INT64_T_LEN];
p = temp + NXT_INT64_T_LEN;
@@ -652,8 +652,8 @@ nxt_integer(nxt_sprintf_t *spf, u_char *buf, uint64_t ui64)
if (spf->width != 0) {
- len = (temp + NXT_INT64_T_LEN) - p;
- end = buf + (spf->width - len);
+ length = (temp + NXT_INT64_T_LEN) - p;
+ end = buf + (spf->width - length);
end = nxt_min(end, spf->end);
while (buf < end) {
@@ -663,8 +663,8 @@ nxt_integer(nxt_sprintf_t *spf, u_char *buf, uint64_t ui64)
/* Number copying. */
- len = (temp + NXT_INT64_T_LEN) - p;
- end = buf + len;
+ length = (temp + NXT_INT64_T_LEN) - p;
+ end = buf + length;
end = nxt_min(end, spf->end);
while (buf < end) {
@@ -679,7 +679,7 @@ static u_char *
nxt_number(nxt_sprintf_t *spf, u_char *buf, double n)
{
u_char *p, *end;
- size_t len;
+ size_t length;
u_char temp[NXT_DOUBLE_LEN];
p = temp + NXT_DOUBLE_LEN;
@@ -692,8 +692,8 @@ nxt_number(nxt_sprintf_t *spf, u_char *buf, double n)
/* Zero or space padding. */
if (spf->width != 0) {
- len = (temp + NXT_DOUBLE_LEN) - p;
- end = buf + (spf->width - len);
+ length = (temp + NXT_DOUBLE_LEN) - p;
+ end = buf + (spf->width - length);
end = nxt_min(end, spf->end);
while (buf < end) {
@@ -703,9 +703,9 @@ nxt_number(nxt_sprintf_t *spf, u_char *buf, double n)
/* Number copying. */
- len = (temp + NXT_DOUBLE_LEN) - p;
+ length = (temp + NXT_DOUBLE_LEN) - p;
- end = buf + len;
+ end = buf + length;
end = nxt_min(end, spf->end);
while (buf < end) {