summaryrefslogtreecommitdiff
path: root/pjlib/src/pjlib-test
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-05-01 06:36:15 +0000
committerBenny Prijono <bennylp@teluu.com>2007-05-01 06:36:15 +0000
commitf9b1f6fe23396291bc504e850dfe98ea5647ed9e (patch)
tree61fa1e8aec25e84d33b17899b7949f012dd2ff88 /pjlib/src/pjlib-test
parent9bfdd11aac28c934ce580880837cce948d9be10a (diff)
Fixed build error on Linux
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1236 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/src/pjlib-test')
-rw-r--r--pjlib/src/pjlib-test/ioq_perf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/src/pjlib-test/ioq_perf.c b/pjlib/src/pjlib-test/ioq_perf.c
index cb8e8270..ea47603f 100644
--- a/pjlib/src/pjlib-test/ioq_perf.c
+++ b/pjlib/src/pjlib-test/ioq_perf.c
@@ -332,7 +332,7 @@ static int perform_test(int sock_type, const char *type_name,
for (i=0; i<thread_cnt; ++i) {
struct thread_arg *arg;
- arg = (thread_arg*) pj_pool_zalloc(pool, sizeof(*arg));
+ arg = (struct thread_arg*) pj_pool_zalloc(pool, sizeof(*arg));
arg->id = i;
arg->ioqueue = ioqueue;
arg->counter = 0;