Skip to content

Commit 29ff827

Browse files
committed
Fix linux-unwind.h gcc-mirror#2.
1 parent e0751ed commit 29ff827

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gcc/config/i386/linux-unwind.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ x86_fallback_frame_state (struct _Unwind_Context *context,
137137
{
138138
struct rt_sigframe {
139139
int sig;
140-
struct siginfo *pinfo;
140+
siginfo_t *pinfo;
141141
void *puc;
142-
struct siginfo info;
142+
siginfo_t info;
143143
ucontext_t uc;
144144
} *rt_ = context->cfa;
145145
/* The void * cast is necessary to avoid an aliasing warning.

0 commit comments

Comments
 (0)