summaryrefslogtreecommitdiff
path: root/lib/printf/vfprintf.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2019-05-12 22:39:59 +0200
committerDavid Lamparter <equinox@diac24.net>2019-06-03 16:44:32 +0200
commit8be3678a2331250b0559d07526e66b73d1794d8c (patch)
treea4af45407a189a6d7ee0a03649ce3f070502e1e6 /lib/printf/vfprintf.c
parente8c672ea8101c541f66e0959d526ae4f5a2a778d (diff)
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 <equinox@diac24.net>
Diffstat (limited to 'lib/printf/vfprintf.c')
-rw-r--r--lib/printf/vfprintf.c4
1 files changed, 2 insertions, 2 deletions
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;