Fix gcc-4.3 warnings.

This commit is contained in:
castano 2008-11-14 02:18:35 +00:00
parent c3329d4675
commit c26c52d59c

View File

@ -136,7 +136,11 @@ namespace
#if defined(HAVE_EXECINFO_H) // NV_OS_LINUX
static bool nvHasStackTrace() {
#if NV_OS_DARWIN
return backtrace != NULL;
#else
return true;
#endif
}
static void nvPrintStackTrace(void * trace[], int size, int start=0) {