summaryrefslogtreecommitdiff
path: root/src/ivyperf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ivyperf.c')
-rwxr-xr-xsrc/ivyperf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ivyperf.c b/src/ivyperf.c
index f0ad069..9eb5c02 100755
--- a/src/ivyperf.c
+++ b/src/ivyperf.c
@@ -58,7 +58,7 @@ void Reply (IvyClientPtr app, void *user_data, IvyArgument args)
int len;
void* val;
arg = IvyArgumentGetChildrens( args );
- IvyArgumentGetValue( args , &len, &val);
+ IvyArgumentGetValue( arg , &len, &val);
IvySendMsg ("pong ts=%.*s tr=%f", len, val, currentTime());
}
void Pong (IvyClientPtr app, void *user_data, IvyArgument args)
@@ -71,10 +71,10 @@ void Pong (IvyClientPtr app, void *user_data, IvyArgument args)
current = currentTime();
arg = IvyArgumentGetChildrens( args );
- IvyArgumentGetValue( args , &len, &val);
+ IvyArgumentGetValue( arg , &len, &val);
ts = atof( val );
arg = IvyArgumentGetNextChild( arg );
- IvyArgumentGetValue( args , &len, &val);
+ IvyArgumentGetValue( arg , &len, &val);
tr = atof( val );
roundtrip1 = tr-ts;
roundtrip2 = current - tr;