X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2F_PDCLIB%2Fprint.c;h=869377dd54b95ae49fceafe24ea895e65482e0dd;hp=d0476be857c470281de45c319c406b676aaed0aa;hb=223f52e40535ba7c691ec50ecec7a55e013d2d75;hpb=d53f4cef7c897e5bddbf654bf2d221c505fe6c82 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 {