mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-25 14:10:06 +01:00
os: backtrace() returns int, not size_t
This commit is contained in:
parent
5321ae76cf
commit
f43a3c61ab
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@
|
|||
void xorg_backtrace(void)
|
||||
{
|
||||
void *array[32]; /* deeper nesting than this means something's wrong */
|
||||
size_t size, i;
|
||||
int size, i;
|
||||
char **strings;
|
||||
ErrorF("\nBacktrace:\n");
|
||||
size = backtrace(array, 32);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue