summaryrefslogtreecommitdiff
path: root/debug/segfault.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/segfault.c')
-rw-r--r--debug/segfault.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/segfault.c b/debug/segfault.c
index 4f28b331d9..e1945b5846 100644
--- a/debug/segfault.c
+++ b/debug/segfault.c
@@ -1,5 +1,5 @@
/* Catch segmentation faults and print backtrace.
- Copyright (C) 1998-2016 Free Software Foundation, Inc.
+ Copyright (C) 1998-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
@@ -156,7 +156,7 @@ install_handler (void)
if (getenv ("SEGFAULT_USE_ALTSTACK") != 0)
{
void *stack_mem = malloc (2 * SIGSTKSZ);
- struct sigaltstack ss;
+ stack_t ss;
if (stack_mem != NULL)
{