Browse Source

tor_assert had a misleading comment

svn:r5338
Roger Dingledine 20 years ago
parent
commit
c68cadc0c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/util.h

+ 1 - 1
src/common/util.h

@@ -44,7 +44,7 @@
           _SHORT_FILE_, __LINE__, __FUNCTION__, #expr);                 \
       fprintf(stderr,"%s:%d %s: Assertion %s failed; aborting.\n",      \
               _SHORT_FILE_, __LINE__, __FUNCTION__, #expr);             \
-      abort();  /* unreached */                                         \
+      abort();                                                          \
     } } while (0)
 #endif