Browse Source

missing semicolon

Nick Mathewson 8 years ago
parent
commit
d891e2a9c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/dirserv.c

+ 1 - 1
src/or/dirserv.c

@@ -3746,7 +3746,7 @@ validate_recommended_package_line(const char *line)
   }
 
   /* If we reach this point, we have at least 1 entry. */
-  tor_assert(n_entries > 0)
+  tor_assert(n_entries > 0);
   return 1;
 }