Browse Source

Whoops -- add missing defined().

Nick Mathewson 10 years ago
parent
commit
9025423471
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/backtrace.c

+ 1 - 1
src/common/backtrace.c

@@ -24,7 +24,7 @@
 
 #ifdef HAVE_CYGWIN_SIGNAL_H
 #include <cygwin/signal.h>
-#elif HAVE_SYS_UCONTEXT_H
+#elif defined(HAVE_SYS_UCONTEXT_H)
 #include <sys/ucontext.h>
 #elif defined(HAVE_UCONTEXT_H)
 #include <ucontext.h>