aboutsummaryrefslogtreecommitdiffstats
path: root/channels/sip
diff options
context:
space:
mode:
authorrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-08 00:45:13 +0000
committerrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-08 00:45:13 +0000
commit5f87b66641d86dbe7afec3b083016b2b1aceafc7 (patch)
tree2363748200206849226179ab90b63ba64a9ffee5 /channels/sip
parenta98655a5c518c34c86c7b0a924371b726b06d119 (diff)
Make SIP tests compile again.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@268857 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/sip')
-rw-r--r--channels/sip/dialplan_functions.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/sip/dialplan_functions.c b/channels/sip/dialplan_functions.c
index 23e70c1e8..d39a2779e 100644
--- a/channels/sip/dialplan_functions.c
+++ b/channels/sip/dialplan_functions.c
@@ -279,8 +279,8 @@ AST_TEST_DEFINE(test_sip_rtpqos_1)
} lookup[] = {
{ "txcount", INT, { .i4 = &mine.txcount, }, },
{ "rxcount", INT, { .i4 = &mine.rxcount, }, },
- { "txjitter", INT, { .i4 = &mine.txjitter, }, },
- { "rxjitter", INT, { .i4 = &mine.rxjitter, }, },
+ { "txjitter", DBL, { .d8 = &mine.txjitter, }, },
+ { "rxjitter", DBL, { .d8 = &mine.rxjitter, }, },
{ "remote_maxjitter", DBL, { .d8 = &mine.remote_maxjitter, }, },
{ "remote_minjitter", DBL, { .d8 = &mine.remote_minjitter, }, },
{ "remote_normdevjitter", DBL, { .d8 = &mine.remote_normdevjitter, }, },
@@ -299,7 +299,7 @@ AST_TEST_DEFINE(test_sip_rtpqos_1)
{ "local_minrxploss", DBL, { .d8 = &mine.local_minrxploss, }, },
{ "local_normdevrxploss", DBL, { .d8 = &mine.local_normdevrxploss, }, },
{ "local_stdevrxploss", DBL, { .d8 = &mine.local_stdevrxploss, }, },
- { "rtt", INT, { .i4 = &mine.rtt, }, },
+ { "rtt", DBL, { .d8 = &mine.rtt, }, },
{ "maxrtt", DBL, { .d8 = &mine.maxrtt, }, },
{ "minrtt", DBL, { .d8 = &mine.minrtt, }, },
{ "normdevrtt", DBL, { .d8 = &mine.normdevrtt, }, },