Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'agent/tcf/framework/exceptions.h')
-rw-r--r--agent/tcf/framework/exceptions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/tcf/framework/exceptions.h b/agent/tcf/framework/exceptions.h
index 6d988dcb..9f44ac20 100644
--- a/agent/tcf/framework/exceptions.h
+++ b/agent/tcf/framework/exceptions.h
@@ -40,9 +40,9 @@
typedef struct Trap Trap;
struct Trap {
- int error;
jmp_buf env;
Trap * next;
+ int error;
};
#define set_trap(trap) (set_trap_a(trap), setjmp((trap)->env), set_trap_b(trap))

Back to the top