From ebca6e1ea3bb02dac2ac46ccd8d0ea7aac4e5210 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 20 Feb 2019 22:01:48 +1030 Subject: [PATCH] update-mocks: make sure we can find json_add functions. These are on start of line, which is unexpected. Signed-off-by: Rusty Russell --- lightningd/json_stream.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lightningd/json_stream.h b/lightningd/json_stream.h index f160e0ce7..f30f23f98 100644 --- a/lightningd/json_stream.h +++ b/lightningd/json_stream.h @@ -85,8 +85,8 @@ void json_stream_append_part(struct json_stream *js, const char *str, * @js: the json_stream. * @fmt...: the printf-style format */ -void PRINTF_FMT(2,3) -json_stream_append_fmt(struct json_stream *js, const char *fmt, ...); +PRINTF_FMT(2,3) +void json_stream_append_fmt(struct json_stream *js, const char *fmt, ...); /** * json_add_member - add a generic member. @@ -94,9 +94,9 @@ json_stream_append_fmt(struct json_stream *js, const char *fmt, ...); * @fieldname: optional fieldname. * @fmt...: the printf-style format */ -void PRINTF_FMT(3,4) -json_add_member(struct json_stream *js, const char *fieldname, - const char *fmt, ...); +PRINTF_FMT(3,4) +void json_add_member(struct json_stream *js, const char *fieldname, + const char *fmt, ...); /** * json_stream_output - start writing out a json_stream to this conn.