From a1e0560d1a26b4493a21249d48b418eb16353b34 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. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@417 546481bc-9713-0410-bf18-d3337bbf4a3e --- 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.30.2