aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2004-12-29 16:25:06 +0000
committerGerald Combs <gerald@wireshark.org>2004-12-29 16:25:06 +0000
commit13fd96b13dad62fccc98e29f826dba34dc2e142a (patch)
tree1b2a783ec9418a63572050f8678d2a26398cc18a /epan
parenta1f2fba1ad4bc4803c2c95751f97080ba9a5a529 (diff)
Remove some unneeded backslashes.
svn path=/trunk/; revision=12857
Diffstat (limited to 'epan')
-rw-r--r--epan/except.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/except.c b/epan/except.c
index 87320f9206..8b61edc317 100644
--- a/epan/except.c
+++ b/epan/except.c
@@ -151,9 +151,9 @@ void except_deinit(void)
static int match(const volatile except_id_t *thrown, const except_id_t *caught)
{
- int group_match = (caught->except_group == XCEPT_GROUP_ANY || \
+ int group_match = (caught->except_group == XCEPT_GROUP_ANY ||
caught->except_group == thrown->except_group);
- int code_match = (caught->except_code == XCEPT_CODE_ANY || \
+ int code_match = (caught->except_code == XCEPT_CODE_ANY ||
caught->except_code == thrown->except_code);
return group_match && code_match;
@@ -163,7 +163,7 @@ static void do_throw(except_t *except)
{
struct except_stacknode *top;
- assert (except->except_id.except_group != 0 && \
+ assert (except->except_id.except_group != 0 &&
except->except_id.except_code != 0);
for (top = get_top(); top != 0; top = top->except_down) {