summaryrefslogtreecommitdiff
path: root/src/doprnt.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1990-11-12 20:20:41 +0000
committerJim Blandy <jimb@redhat.com>1990-11-12 20:20:41 +0000
commitc02ade1c8df709b66b2bbc2da1b1a58074bac4ae (patch)
treee78419db5b67689d71f2034b0dd5decc5562eaf3 /src/doprnt.c
parent3b1ba6ce2d96f4870029f5416d786f36411f00b0 (diff)
downloademacs-c02ade1c8df709b66b2bbc2da1b1a58074bac4ae.tar.gz
*** empty log message ***
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 */
{