summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-sctp.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2013-03-14 08:41:11 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2013-03-14 08:41:11 +0000
commitd9aff2d872585989fff257eb1baae4d1df7cc67d (patch)
treedd037b61eccf9c47ebf44913798f4acd07c60655 /epan/dissectors/packet-sctp.c
parentb5399168355375733c37cb2f9682ded7831941db (diff)
downloadwireshark-d9aff2d872585989fff257eb1baae4d1df7cc67d.tar.gz
Fixed an indent to avoid a warning: for loop has empty body [-Wempty-body]
svn path=/trunk/; revision=48294
Diffstat (limited to 'epan/dissectors/packet-sctp.c')
-rw-r--r--epan/dissectors/packet-sctp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-sctp.c b/epan/dissectors/packet-sctp.c
index 52ee999ce8..90ce6af947 100644
--- a/epan/dissectors/packet-sctp.c
+++ b/epan/dissectors/packet-sctp.c
@@ -2632,8 +2632,7 @@ fragment_reassembly(tvbuff_t *tvb, sctp_fragment* fragment,
for (last_message = msg->messages;
last_message->next;
last_message = last_message->next);
-
- last_message->next = message;
+ last_message->next = message;
}
/* remove begin and end from list */