Fixed a purely syntactical FIXME.
authorsolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Sat, 15 May 2010 01:00:35 +0000 (01:00 +0000)
committersolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Sat, 15 May 2010 01:00:35 +0000 (01:00 +0000)
git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@417 546481bc-9713-0410-bf18-d3337bbf4a3e

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
         {