aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-02-29 15:49:10 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-02-29 15:49:10 +0100
commite03b3bc757e4745ab9c5216919f0dc358da1292f (patch)
treea28666b8f21133a612a295015aaa53b69983b38f
parent10f981a4a1ec98befdc3184a6842369ae5b26d5b (diff)
osmux_test.c: tweak error report
-rw-r--r--tests/osmux/osmux_test.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/osmux/osmux_test.c b/tests/osmux/osmux_test.c
index 94b95de..6fb4dad 100644
--- a/tests/osmux/osmux_test.c
+++ b/tests/osmux/osmux_test.c
@@ -63,7 +63,9 @@ static void tx_cb(struct msgb *msg, void *data)
last = now;
if (diff.tv_usec > 2*17000) {
- fprintf(stdout, "lagging to deliver reconstructed RTP\n");
+ fprintf(stdout, "delivery of reconstructed RTP lagged"
+ " (diff.tv_usec=%u > 2*17000)\n",
+ (unsigned int)diff.tv_usec);
exit(EXIT_FAILURE);
}