summaryrefslogtreecommitdiff
path: root/man3/printf.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/printf.3')
-rw-r--r--man3/printf.34
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/printf.3 b/man3/printf.3
index 5a13dd0a..59cdc7d8 100644
--- a/man3/printf.3
+++ b/man3/printf.3
@@ -773,10 +773,10 @@ make_message(const char *fmt, ...) {
n = vsnprintf (p, size, fmt, ap);
va_end(ap);
/* If that worked, return the string. */
- if (n > -1 && n < size)
+ if (n > \-1 && n < size)
return p;
/* Else try again with more space. */
- if (n > -1) /* glibc 2.1 */
+ if (n > \-1) /* glibc 2.1 */
size = n+1; /* precisely what is needed */
else /* glibc 2.0 */
size *= 2; /* twice the old size */