mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-02-03 13:40:34 +01:00
Fix build issues.
This commit is contained in:
parent
826a6f029f
commit
b8aef6c474
1 changed files with 2 additions and 2 deletions
|
|
@ -1277,7 +1277,7 @@ xf86InterceptSigIll(void (*sigillhandler)(void))
|
|||
|
||||
#include <execinfo.h>
|
||||
|
||||
static inline void xorg_backtrace(void)
|
||||
static __inline__ void xorg_backtrace(void)
|
||||
{
|
||||
void *array[32]; /* deeper nesting than this means something's wrong */
|
||||
size_t size, i;
|
||||
|
|
@ -1292,7 +1292,7 @@ static inline void xorg_backtrace(void)
|
|||
|
||||
#else /* not glibc or glibc < 2.1 */
|
||||
|
||||
static inline void xorg_backtrace(void) { return; }
|
||||
static __inline__ void xorg_backtrace(void) { return; }
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue