Commit 3b59d075 authored by Pavel Tvrdík's avatar Pavel Tvrdík
Browse files

Small change in birdtest.h

Thanks to Martin Mares.
parent f12f9d91
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -150,8 +150,7 @@ void bt_strncat_(char *buf, size_t buf_size, const char *str, ...);
#define bt_print_result_line(fn, in, out, fn_out, in_fmt, out_fmt, result)		\
    do											\
    {											\
      char buf[BT_BUFFER_SIZE];								\
      bzero(buf, sizeof(buf));								\
      char buf[BT_BUFFER_SIZE] = "";							\
      snprintf(buf, sizeof(buf), "%s(", #fn);						\
      bt_dump(buf, in, in_fmt);								\
      bt_strncat(buf, ") gives ");							\