summaryrefslogtreecommitdiff
path: root/libc/stdio
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-21 13:08:33 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:30 +0200
commita80a6b505f785cb9f5262529fe182fb0ba216e03 (patch)
treeb49a4abf0e24aaa0a809d470dad4d8a2ffa3ffeb /libc/stdio
parent0aa1f968d3bdd2e929f1e68e671f7b4f2e9dacd3 (diff)
_vfprintf.c: fix typo s/NL_MAX_ARG/NL_ARGMAX/
NL_MAX_ARG does not exist. Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/stdio')
-rw-r--r--libc/stdio/_vfprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/_vfprintf.c b/libc/stdio/_vfprintf.c
index bcbf1ed64..ab7c7c3c1 100644
--- a/libc/stdio/_vfprintf.c
+++ b/libc/stdio/_vfprintf.c
@@ -560,7 +560,7 @@ int attribute_hidden _ppfs_init(register ppfs_t *ppfs, const char *fmt0)
ppfs->fmtpos = fmt0; /* rewind */
}
-#ifdef NL_MAX_ARG
+#ifdef NL_ARGMAX
/* If we have positional args, make sure we know all the types. */
{
register int *p = ppfs->argtype;
@@ -572,7 +572,7 @@ int attribute_hidden _ppfs_init(register ppfs_t *ppfs, const char *fmt0)
++p;
}
}
-#endif /* NL_MAX_ARG */
+#endif /* NL_ARGMAX */
return 0;
}