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
commit447c9a10acbd5ffb9504f7a72db532c0388aa695 (patch)
tree7107b4fb486ac73869622c34c4e3e21d5ca05e49 /src/doprnt.c
parent4a5f1de511c7241366b4fbc1aaba8c286cd2fdd9 (diff)
downloademacs-447c9a10acbd5ffb9504f7a72db532c0388aa695.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 */
{