patching and testing again...
This commit is contained in:
@@ -23,7 +23,7 @@ int loop(int sfd, int iters)
|
||||
{
|
||||
int count, foo;
|
||||
long temps;
|
||||
char ligne[200];
|
||||
char ligne[200], buff[200];
|
||||
float datas[4];
|
||||
struct tm *p_tms;
|
||||
|
||||
@@ -39,9 +39,10 @@ for (count=0; count<iters; count++) {
|
||||
if (verbosity > 1)
|
||||
{
|
||||
p_tms = localtime(&temps);
|
||||
(void)strftime(ligne, 19, "%H:%M:%S", p_tms);
|
||||
fprintf(stderr, "%6d %s\n", count, ligne);
|
||||
(void)strftime(buff, 19, "%H:%M:%S", p_tms);
|
||||
fprintf(stderr, "%s %6d / %d\n", buff, count, iters);
|
||||
}
|
||||
//
|
||||
foo = parse4values(ligne, 'T', datas);
|
||||
//
|
||||
if (foo >= 0) {
|
||||
|
||||
Reference in New Issue
Block a user