Commit 544749c9 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Whitespace

parent 2ddab727
......@@ -215,8 +215,8 @@ vsb_esc_cat(struct vsb *sb, const char *b, const char *e)
VSB_cat(sb, "\\\"");
break;
case '\\':
VSB_cat(sb, "\\\\");
break;
VSB_cat(sb, "\\\\");
break;
default:
VSB_putc(sb, *b);
break;
......@@ -272,7 +272,7 @@ format_fragment(const struct format *format)
if (format->string == NULL)
return (-1);
AZ(vsb_esc_cat(CTX.vsb, format->string,
format->string + strlen(format->string)));
format->string + strlen(format->string)));
return (0);
}
AZ(vsb_fcat(CTX.vsb, format->frag, NULL));
......
......@@ -233,7 +233,7 @@ vmod_cache_req_body(VRT_CTX, VCL_BYTES size)
CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
result = VRT_CacheReqBody(ctx, size);
VSLb(ctx->vsl, SLT_Debug,"VRT_CacheReqBody(%zu): %d",
VSLb(ctx->vsl, SLT_Debug, "VRT_CacheReqBody(%zu): %d",
(size_t)size, result);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment