Commit d915e220 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

mgt_vcc: Missing new line in error message

parent 8bfc5948
......@@ -256,7 +256,8 @@ mgt_vcc_touchfile(const char *fn, struct vsb *sb)
i = open(fn, O_WRONLY|O_CREAT|O_TRUNC, 0640);
if (i < 0) {
VSB_printf(sb, "Failed to create %s: %s", fn, VAS_errtxt(errno));
VSB_printf(sb, "Failed to create %s: %s\n",
fn, VAS_errtxt(errno));
return (2);
}
closefd(&i);
......
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