Fix indentation.

Change-Id: I5b01865b33b65ee55718be680b6d17cdeee1a809
Reviewed-on: https://code.wireshark.org/review/13208
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2016-01-11 21:20:14 -08:00
parent 52e496d6a6
commit 8a5b29c8f3
1 changed files with 3 additions and 3 deletions

View File

@ -223,9 +223,9 @@ find_assoc(sctp_tmp_info_t *needle)
{
while (list)
{
info = (sctp_assoc_info_t*)(list->data);
if (needle->assoc_id == info->assoc_id)
return info;
info = (sctp_assoc_info_t*)(list->data);
if (needle->assoc_id == info->assoc_id)
return info;
list = g_list_previous(list);
}