Explorar el Código

missing semicolon

Nick Mathewson hace 10 años
padre
commit
d891e2a9c5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
 }