git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bc832d
)
no need to call trio for %ld
author
Aleš Křenek
<ljocha@ics.muni.cz>
Thu, 17 May 2007 14:50:31 +0000
(14:50 +0000)
committer
Aleš Křenek
<ljocha@ics.muni.cz>
Thu, 17 May 2007 14:50:31 +0000
(14:50 +0000)
org.glite.jp.common/src/attr.c
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.jp.common/src/attr.c
b/org.glite.jp.common/src/attr.c
index
d088009
..
117cb15
100644
(file)
--- 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;
}