diff src/doprnt.c @ 5923:61d7d7bcbe76 cygwin

merged heads after pull -u
author Henry Thompson <ht@markup.co.uk>
date Thu, 05 Feb 2015 17:19:05 +0000
parents b3824b7f5627
children
line wrap: on
line diff
--- a/src/doprnt.c	Wed Apr 23 22:22:37 2014 +0100
+++ b/src/doprnt.c	Thu Feb 05 17:19:05 2015 +0000
@@ -122,7 +122,7 @@
   /* Padding at beginning to right-justify ... */
   if (!minus_flag)
     while (to_add-- > 0)
-      Lstream_putc (lstr, zero_flag ? '0' : ' ');
+      (void) Lstream_putc (lstr, zero_flag ? '0' : ' ');
 
   if (0 <= maxlen && maxlen < cclen)
     len = charcount_to_bytecount (string, maxlen);
@@ -131,7 +131,7 @@
   /* Padding at end to left-justify ... */
   if (minus_flag)
     while (to_add-- > 0)
-      Lstream_putc (lstr, zero_flag ? '0' : ' ');
+      (void) Lstream_putc (lstr, zero_flag ? '0' : ' ');
 }
 
 static const Ibyte *