From 9ae011488330a88828c30e074b0a5cf10fa6456b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ale=C5=A1=20K=C5=99enek?= Date: Thu, 17 May 2007 14:50:31 +0000 Subject: [PATCH] no need to call trio for %ld --- org.glite.jp.common/src/attr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 1.8.2.3