mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-12 19:33:03 +00:00
Removed itoa()
SVN revision: 201
This commit is contained in:
parent
7a52d59dcc
commit
f047036be2
5
elogd.c
5
elogd.c
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 2.57 2002/08/06 09:03:41 midas
|
||||||
|
Removed itoa()
|
||||||
|
|
||||||
Revision 2.56 2002/08/06 08:57:39 midas
|
Revision 2.56 2002/08/06 08:57:39 midas
|
||||||
Added email notify flag to password file
|
Added email notify flag to password file
|
||||||
|
|
||||||
@ -6046,7 +6049,7 @@ MSG_LIST *msg_list;
|
|||||||
{
|
{
|
||||||
msg_list[n].lbs = lbs;
|
msg_list[n].lbs = lbs;
|
||||||
msg_list[n].index = j;
|
msg_list[n].index = j;
|
||||||
itoa(lbs->el_index[j].file_time, msg_list[n].string, 10);
|
sprintf(msg_list[n].string, "%d", lbs->el_index[j].file_time);
|
||||||
n++;
|
n++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user