chiark / gitweb /
Makefile: Use check_PROGRAMS target.
[mLib] / dputf.c
diff --git a/dputf.c b/dputf.c
index 7ca969a2949acbb851f08332db4140d58bbe2bee..ef8273c0a6cd57e8b5c6f54fc79efd0e51749407 100644 (file)
--- a/dputf.c
+++ b/dputf.c
@@ -7,7 +7,7 @@
  * (c) 1999 Straylight/Edgeware
  */
 
-/*----- Licensing notice --------------------------------------------------* 
+/*----- Licensing notice --------------------------------------------------*
  *
  * This file is part of the mLib utilities library.
  *
  * it under the terms of the GNU Library General Public License as
  * published by the Free Software Foundation; either version 2 of the
  * License, or (at your option) any later version.
- * 
+ *
  * mLib is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Library General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Library General Public
  * License along with mLib; if not, write to the Free
  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
@@ -145,7 +145,7 @@ int dstr_vputf(dstr *d, const char *p, va_list *ap)
          }
          DPUTC(d, *p);
          goto formatted;
-        getnum:
+       getnum:
          *ip = 0;
          if (*p == '*') {
            *ip = va_arg(*ap, int);
@@ -193,7 +193,7 @@ int dstr_vputf(dstr *d, const char *p, va_list *ap)
          if (!(f & f_prec))
            prec = 6;
          else
-           sz += prec + 16;        
+           sz += prec + 16;
          if ((f & f_wd) && wd + 1 > sz)
            sz = wd + 1;
          DENSURE(d, sz);