From: Aleš Křenek Date: Thu, 17 May 2007 14:50:31 +0000 (+0000) Subject: no need to call trio for %ld X-Git-Tag: glite-jp-index_R_1_3_0_1~7 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=9ae011488330a88828c30e074b0a5cf10fa6456b;p=jra1mw.git no need to call trio for %ld --- diff --git a/org.glite.jp.common/src/attr.c b/org.glite.jp.common/src/attr.c index d088009..117cb15 100644 --- a/org.glite.jp.common/src/attr.c +++ b/org.glite.jp.common/src/attr.c @@ -283,7 +283,7 @@ char * glite_jp_time2attr(time_t t) { char *r; - trio_asprintf(&r,"%ld",(long) t); + asprintf(&r,"%ld",(long) t); return r; }