aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/unistim
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-05-11 19:22:25 +0000
committerGuy Harris <guy@alum.mit.edu>2012-05-11 19:22:25 +0000
commit4217008691f7da56b496245cbca72b135e3892df (patch)
tree7f2101e3b5cbfd33367deb6f57c3e8e1db99f59a /plugins/unistim
parent90f564717f4c98816c3f2906cde739c8c79b92b6 (diff)
Get rid of remaining Booleans-as-encoding-arguments in
proto_tree_add_item() calls. svn path=/trunk/; revision=42587
Diffstat (limited to 'plugins/unistim')
-rw-r--r--plugins/unistim/packet-unistim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/unistim/packet-unistim.c b/plugins/unistim/packet-unistim.c
index 49d2acf689..7991dbee4f 100644
--- a/plugins/unistim/packet-unistim.c
+++ b/plugins/unistim/packet-unistim.c
@@ -2348,7 +2348,7 @@ dissect_audio_switch(proto_tree *msg_tree,packet_info *pinfo,
/*Configure Vocoder Parameters*/
proto_tree_add_item(msg_tree,hf_audio_mgr_stream_id,tvb,offset,1,ENC_LITTLE_ENDIAN);
offset+=1;msg_len-=1;
- proto_tree_add_item(msg_tree,hf_audio_vocoder_id,tvb,offset,1,FALSE),
+ proto_tree_add_item(msg_tree,hf_audio_vocoder_id,tvb,offset,1,ENC_BIG_ENDIAN),
offset+=1;msg_len-=1;
while(msg_len>0){
param=proto_tree_add_text(msg_tree,tvb,offset,0,"Param");