Silence a bunch of format-zero-length warnings
authorFelipe Contreras <felipe.contreras@gmail.com>
Sun, 4 May 2014 05:42:47 +0000 (00:42 -0500)
committerFelipe Contreras <felipe.contreras@gmail.com>
Sun, 11 May 2014 04:36:43 +0000 (23:36 -0500)
commit998e160e280fa97e71eaae2d378de1c33e50bb78
tree7e22cd0bcdb31bd521b97b3b8894b36c521b4de8
parent11da1b758ac3bcdd3017a7850504a41adacdfbce
Silence a bunch of format-zero-length warnings

This is in gcc 4.9.0:

  wt-status.c: In function ‘wt_status_print_unmerged_header’:
  wt-status.c:191:2: warning: zero-length gnu_printf format string [-Wformat-zero-length]
    status_printf_ln(s, c, "");
    ^

We could pass -Wno-format-zero-length, but it seems compiler-specific
flags are frowned upon, so let's just avoid the warning altogether.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
builtin/commit.c
wt-status.c