From: solar <> Date: Sat, 15 May 2010 01:00:35 +0000 (+0000) Subject: Fixed a purely syntactical FIXME. X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=commitdiff_plain;h=94543619e491d0fbe925e9148411f302e96d4e51 Fixed a purely syntactical FIXME. --- diff --git a/functions/_PDCLIB/print.c b/functions/_PDCLIB/print.c index d0476be..869377d 100644 --- a/functions/_PDCLIB/print.c +++ b/functions/_PDCLIB/print.c @@ -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 {