From: solar Date: Sat, 15 May 2010 01:00:35 +0000 (+0000) Subject: Fixed a purely syntactical FIXME. X-Git-Tag: v0.5~84 X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=223f52e40535ba7c691ec50ecec7a55e013d2d75 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 {