summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorJeremy Huddleston <jeremyhu@apple.com>2010-12-03 16:46:11 -0800
committerJeremy Huddleston <jeremyhu@apple.com>2010-12-03 21:56:20 -0800
commit4c3aaef3ffa4a22c951331ef36c45b95f719a907 (patch)
tree5ca65dbdec4902436c4a621f441528c71ae9ad0c /os
parent438dd53e4b39a465e98c270c7c9baf71e701a821 (diff)
XQuartz: Cleanup some compiler warnings
Mark __crashreporter_info__ as __attribute__((__used__)) Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> (cherry picked from commit 14f00449eb81771c01fffcdaf3dd697cdf4e41de)
Diffstat (limited to 'os')
-rw-r--r--os/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/log.c b/os/log.c
index ee4b45fa4..053033ad0 100644
--- a/os/log.c
+++ b/os/log.c
@@ -121,7 +121,7 @@ static Bool needBuffer = TRUE;
#include <AvailabilityMacros.h>
static char __crashreporter_info_buff__[4096] = {0};
-static const char *__crashreporter_info__ = &__crashreporter_info_buff__[0];
+static const char *__crashreporter_info__ __attribute__((__used__)) = &__crashreporter_info_buff__[0];
#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1050
// This is actually a toolchain requirement, but I'm not sure the correct check,
// but it should be fine to just only include it for Leopard and later. This line