From e85cb739766d00977a08cce98f161976da5fbefc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= Date: Tue, 26 May 2020 10:50:58 +0200 Subject: blobmsg: drop old comment about json formatting functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Those functions were moved out of blobmsg.h. Fixes: 0918243e90e6 ("move json formatting to the blobmsg_json library") Signed-off-by: Rafał Miłecki --- blobmsg.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/blobmsg.h b/blobmsg.h index be3c7ee..4565082 100644 --- a/blobmsg.h +++ b/blobmsg.h @@ -314,9 +314,6 @@ int blobmsg_vprintf(struct blob_buf *buf, const char *name, const char *format, int blobmsg_printf(struct blob_buf *buf, const char *name, const char *format, ...) __attribute__((format(printf, 3, 4))); - -/* blobmsg to json formatting */ - #define blobmsg_for_each_attr(pos, attr, rem) \ for (rem = attr ? blobmsg_data_len(attr) : 0, \ pos = (struct blob_attr *) (attr ? blobmsg_data(attr) : NULL); \ -- cgit v1.2.1