aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bssgp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-11-21 21:09:32 +0000
committerGuy Harris <guy@alum.mit.edu>2012-11-21 21:09:32 +0000
commit715065609ba2ea099c6c2e7cb3a581c189779162 (patch)
treed119f29ee5dd9c02e4328b6155d431f84094ea73 /epan/dissectors/packet-bssgp.c
parent52f1565bd40404e003dcd5312b6d9564a6154b44 (diff)
Clean up white space (no tabs).
svn path=/trunk/; revision=46120
Diffstat (limited to 'epan/dissectors/packet-bssgp.c')
-rw-r--r--epan/dissectors/packet-bssgp.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/epan/dissectors/packet-bssgp.c b/epan/dissectors/packet-bssgp.c
index 988d903066..76facb2add 100644
--- a/epan/dissectors/packet-bssgp.c
+++ b/epan/dissectors/packet-bssgp.c
@@ -3170,14 +3170,15 @@ de_bssgp_reliable_inter_rat_ho_inf(tvbuff_t *tvb, proto_tree *tree, packet_info
static guint16
de_bssgp_son_transfer_app_id(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo _U_, guint32 offset _U_, guint len _U_, gchar *add_string _U_, int string_len _U_)
{
- tvbuff_t *next_tvb;
+ tvbuff_t *next_tvb;
+
/* SON Transfer Application Identity: This field is encoded as the SON Transfer Application Identity IE
* as defined in 3GPP TS 36.413
*/
if(len > 0){
next_tvb = tvb_new_subset(tvb, offset, len, len);
- dissect_s1ap_SONtransferApplicationIdentity_PDU(tvb, gpinfo, tree, NULL);
- }
+ dissect_s1ap_SONtransferApplicationIdentity_PDU(tvb, gpinfo, tree, NULL);
+ }
return(len);
}