From 8be3678a2331250b0559d07526e66b73d1794d8c Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Sun, 12 May 2019 22:39:59 +0200 Subject: lib/printf: rename & private __find_arguments These are internal to printf(), and symbols starting with __ are reserved for the compiler/libc. Signed-off-by: David Lamparter --- lib/printf/vfprintf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/printf/vfprintf.c') diff --git a/lib/printf/vfprintf.c b/lib/printf/vfprintf.c index 7374a03e73..66cedcb698 100644 --- a/lib/printf/vfprintf.c +++ b/lib/printf/vfprintf.c @@ -253,7 +253,7 @@ __vfprintf(FILE *fp, const char *fmt0, va_list ap) int hold = nextarg; \ if (argtable == NULL) { \ argtable = statargtable; \ - if (__find_arguments (fmt0, orgap, &argtable)) { \ + if (_frr_find_arguments (fmt0, orgap, &argtable)) { \ ret = EOF; \ goto error; \ } \ @@ -369,7 +369,7 @@ reswitch: switch (ch) { nextarg = n; if (argtable == NULL) { argtable = statargtable; - if (__find_arguments (fmt0, orgap, + if (_frr_find_arguments (fmt0, orgap, &argtable)) { ret = EOF; goto error; -- cgit v1.2.3