From 223f52e40535ba7c691ec50ecec7a55e013d2d75 Mon Sep 17 00:00:00 2001 From: solar Date: Sat, 15 May 2010 01:00:35 +0000 Subject: [PATCH] Fixed a purely syntactical FIXME. --- functions/_PDCLIB/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.40.0