Stylistic consistency.

Don't give the first argument to CATCH7() a space after its comma; none
of the other CATCHn() arguments do.

Change-Id: I752d3329080b3bfba362adfff0cb2b0e2034be8b
Reviewed-on: https://code.wireshark.org/review/36768
Reviewed-by: Guy Harris <gharris@sonic.net>
This commit is contained in:
Guy Harris 2020-04-09 15:13:37 -07:00 committed by Guy Harris
parent fcd51deb99
commit ee9d9ddc1b
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@
(except_state|=EXCEPT_CAUGHT)) \
/* user's code goes here */
#define CATCH7(t, u,v,w,x,y,z) \
#define CATCH7(t,u,v,w,x,y,z) \
if (except_state == 0 && exc != 0 && \
(exc->except_id.except_code == (t) || \
exc->except_id.except_code == (u) || \