aboutsummaryrefslogtreecommitdiffstats
path: root/epan/except.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2002-08-28 20:41:00 +0000
committerJörg Mayer <jmayer@loplof.de>2002-08-28 20:41:00 +0000
commit48be4e530d6635dbf1ef1dafa984c2060f3caa8a (patch)
treefc136de37c7e939ec0c5fc83dbf48297b9650816 /epan/except.h
parent64b6acac6dae4c18aa1aebf368923c4bef8ed221 (diff)
Removed trailing whitespaces from .h and .c files using the
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6116
Diffstat (limited to 'epan/except.h')
-rw-r--r--epan/except.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/except.h b/epan/except.h
index 74f507be7d..3687252730 100644
--- a/epan/except.h
+++ b/epan/except.h
@@ -14,7 +14,7 @@
* into proprietary software; there is no requirement for such software to
* contain a copyright notice related to this source.
*
- * $Id: except.h,v 1.3 2002/08/14 19:18:15 guy Exp $
+ * $Id: except.h,v 1.4 2002/08/28 20:40:44 jmayer Exp $
* $Name: $
*/
@@ -66,7 +66,7 @@ struct except_stacknode {
struct except_stacknode *except_down;
enum except_stacktype except_type;
union {
- struct except_catch *except_catcher;
+ struct except_catch *except_catcher;
struct except_cleanup *except_cleanup;
} except_info;
};
@@ -105,7 +105,7 @@ extern void except_free(void *);
#endif
/*
- * void except_cleanup_push(void (*)(void *), void *);
+ * void except_cleanup_push(void (*)(void *), void *);
* void except_cleanup_pop(int);
* void except_checked_cleanup_pop(void (*)(void *), int);
* void except_try_push(const except_id_t [], size_t, except_t **);
@@ -130,7 +130,7 @@ extern void except_free(void *);
if (E) \
except_cl.except_func(except_cl.except_context); \
}
-
+
#define except_try_push(ID, NUM, PPE) \
{ \
struct except_stacknode except_sn; \
@@ -144,6 +144,6 @@ extern void except_free(void *);
#define except_try_pop() \
except_free(except_ch.except_obj.except_dyndata); \
except_pop(); \
- }
+ }
#endif