netifd: bridge: Fix format string position
authorHauke Mehrtens <hauke@hauke-m.de>
Sun, 12 Feb 2023 20:01:57 +0000 (21:01 +0100)
committerHauke Mehrtens <hauke@hauke-m.de>
Sun, 19 Feb 2023 15:07:52 +0000 (16:07 +0100)
commited65a00adc751d102c2041a4a9a32df9dad52b9e
tree6b2aa253d7b7c9e3a0c4c596530438d940514ec6
parent81c1fbcba2f27f687c2a471f341502d47679f401
netifd: bridge: Fix format string position

This fixes the following compile error:
error: format not a string literal, argument types not checked [-Werror=format-nonliteral]

blobmsg_printf() has the following signature:
int blobmsg_printf(struct blob_buf *buf, const char *name, const char *format, ...)

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
bridge.c