Clean up indentation.

Change-Id: I0a05245b5cd19a0ea9929a4e29f82bfe5e526793
Reviewed-on: https://code.wireshark.org/review/27037
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2018-04-19 20:12:14 -07:00
parent d5dc4677ed
commit 07c31a8e97
1 changed files with 4 additions and 4 deletions

View File

@ -261,13 +261,13 @@ extern value_string_ext scsi_asc_val_ext;
TRY {
#define END_TRY_SCSI_CDB_ALLOC_LEN \
if(try_end_data_offset){ \
if(try_end_data_offset){ \
/* just verify we can read all the bytes we were\
* supposed to. \
*/ \
tvb_get_guint8(try_tvb,try_end_data_offset); \
} \
} /* TRY */ \
} /* TRY */ \
CATCH(BoundsError) { \
if(try_short_packet){ \
/* this was a short packet */ \
@ -281,7 +281,7 @@ extern value_string_ext scsi_asc_val_ext;
* important one \
*/ \
} \
} \
} \
CATCH(ReportedBoundsError) { \
if(try_short_packet){ \
/* this was a short packet */ \
@ -292,7 +292,7 @@ extern value_string_ext scsi_asc_val_ext;
*/ \
THROW(ScsiBoundsError); \
} \
} \
} \
ENDTRY; \
}