diff options
| author | skrll <skrll@NetBSD.org> | 2003-10-21 10:47:48 +0000 |
|---|---|---|
| committer | skrll <skrll@NetBSD.org> | 2003-10-21 10:47:48 +0000 |
| commit | ee632a37d0dff934f9eee9a3924df0604dae55e7 (patch) | |
| tree | 249528ecbeb57c314dbf5fcdab521143453e123d /gnu | |
| parent | 31903eec7bba6e796332ca5244f67dacea3f8f21 (diff) | |
more NULL fallout.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/dist/gcc/gcc/unwind-sjlj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/dist/gcc/gcc/unwind-sjlj.c b/gnu/dist/gcc/gcc/unwind-sjlj.c index 7b523384647..376c69004ea 100644 --- a/gnu/dist/gcc/gcc/unwind-sjlj.c +++ b/gnu/dist/gcc/gcc/unwind-sjlj.c @@ -180,7 +180,7 @@ _Unwind_Word _Unwind_GetCFA (struct _Unwind_Context *context) { /* ??? Ideally __builtin_setjmp places the CFA in the jmpbuf. */ - return NULL; + return 0; } void |
