]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/print.c
Fixed a purely syntactical FIXME.
[pdclib] / functions / _PDCLIB / print.c
index d0476be857c470281de45c319c406b676aaed0aa..869377dd54b95ae49fceafe24ea895e65482e0dd 100644 (file)
@@ -259,7 +259,7 @@ const char * _PDCLIB_print( const char * spec, struct _PDCLIB_status_t * status
         if ( width < 0 )
         {
             status->flags |= E_minus;
-            status->width = width * -1; /* FIXME: Should be abs( width ) */
+            status->width = abs( width );
         }
         else
         {