]> pd.if.org Git - pdclib/commitdiff
Fixed a purely syntactical FIXME.
authorsolar <unknown>
Sat, 15 May 2010 01:00:35 +0000 (01:00 +0000)
committersolar <unknown>
Sat, 15 May 2010 01:00:35 +0000 (01:00 +0000)
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
         {