no need to call trio for %ld
authorAleš Křenek <ljocha@ics.muni.cz>
Thu, 17 May 2007 14:50:31 +0000 (14:50 +0000)
committerAleš Křenek <ljocha@ics.muni.cz>
Thu, 17 May 2007 14:50:31 +0000 (14:50 +0000)
org.glite.jp.common/src/attr.c

index d088009..117cb15 100644 (file)
@@ -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;
 }