darwin: Correct inline assembly for ___crashreporter_info__

It was missing an underscore.

Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
Jeremy Huddleston 2010-04-01 15:30:46 -07:00
parent 67b814d9b2
commit 0e342add77
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ extern int noPanoramiXExtension;
static char __crashreporter_info_buff__[4096] = {0};
static const char *__crashreporter_info__ = &__crashreporter_info_buff__[0];
asm (".desc __crashreporter_info__, 0x10");
asm (".desc ___crashreporter_info__, 0x10");
static const char *__crashreporter_info__base = "X.Org X Server " XSERVER_VERSION " Build Date: " BUILD_DATE;

View File

@ -120,7 +120,7 @@ static Bool needBuffer = TRUE;
#ifdef __APPLE__
static char __crashreporter_info_buff__[4096] = {0};
static const char *__crashreporter_info__ = &__crashreporter_info_buff__[0];
asm (".desc __crashreporter_info__, 0x10");
asm (".desc ___crashreporter_info__, 0x10");
#endif
/* Prefix strings for log messages. */