summaryrefslogtreecommitdiff
path: root/src/doprnt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/doprnt.c')
-rw-r--r--src/doprnt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doprnt.c b/src/doprnt.c
index 8795b8626cb..8a7a68c2f0b 100644
--- a/src/doprnt.c
+++ b/src/doprnt.c
@@ -45,7 +45,8 @@ doprnt (buffer, bufsize, format, format_end, nargs, args)
format_end = format + strlen (format);
bufsize--;
- while (fmt != format_end && bufsize > 0) /* Loop until end of format string or buffer full */
+ while (fmt != format_end && bufsize > 0) /* Loop until end of format
+ string or buffer full */
{
if (*fmt == '%') /* Check for a '%' character */
{