summaryrefslogtreecommitdiff
path: root/epan/except.c
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.c
parent64b6acac6dae4c18aa1aebf368923c4bef8ed221 (diff)
downloadwireshark-48be4e530d6635dbf1ef1dafa984c2060f3caa8a.tar.gz
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.c')
-rw-r--r--epan/except.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/except.c b/epan/except.c
index 9f75b79844..9f4bd69cf0 100644
--- a/epan/except.c
+++ b/epan/except.c
@@ -13,7 +13,7 @@
* This source code may be translated into executable form and incorporated
* into proprietary software; there is no requirement for such software to
* contain a copyright notice related to this source.
- * $Id: except.c,v 1.2 2001/07/27 16:20:39 gram Exp $
+ * $Id: except.c,v 1.3 2002/08/28 20:40:44 jmayer Exp $
* $Name: $
*/
@@ -27,7 +27,7 @@
#define XCEPT_BUFFER_SIZE 1024
#ifdef KAZLIB_RCSID
-static const char rcsid[] = "$Id: except.c,v 1.2 2001/07/27 16:20:39 gram Exp $";
+static const char rcsid[] = "$Id: except.c,v 1.3 2002/08/28 20:40:44 jmayer Exp $";
#endif
#define group except_group
@@ -96,7 +96,7 @@ int except_init(void)
int uh_ok = (pthread_key_create(&uh_key, 0) == 0);
int alloc_ok = (pthread_key_create(&alloc_key, 0) == 0);
int dealloc_ok = (pthread_key_create(&dealloc_key, 0) == 0);
-
+
if (!top_ok || !uh_ok || !alloc_ok || !dealloc_ok) {
retval = 0;
init_counter = 0;
@@ -187,7 +187,7 @@ static void do_throw(except_t *except)
struct except_catch *catcher = top->info.catcher;
const except_id_t *pi = catcher->id;
size_t i;
-
+
assert (top->type == XCEPT_CATCHER);
except_free(catcher->obj.dyndata);