aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-04-19 20:12:14 -0700
committerGuy Harris <guy@alum.mit.edu>2018-04-20 03:12:50 +0000
commit07c31a8e971f7e89efac1b0b6b654795f9662c9a (patch)
tree1b3bbf7fc9e81b4a8cfb5498365b61a49535624d
parentd5dc4677edf5c44165a1a23efcd796bfa1b74d27 (diff)
Clean up indentation.
Change-Id: I0a05245b5cd19a0ea9929a4e29f82bfe5e526793 Reviewed-on: https://code.wireshark.org/review/27037 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--epan/dissectors/packet-scsi.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-scsi.h b/epan/dissectors/packet-scsi.h
index 408414ef33..6fc19581c4 100644
--- a/epan/dissectors/packet-scsi.h
+++ b/epan/dissectors/packet-scsi.h
@@ -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; \
}