Browse Source

Avoid warning on end-of-function

svn:r5242
Nick Mathewson 20 years ago
parent
commit
9a1d204318
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/config.c

+ 1 - 1
src/or/config.c

@@ -2822,7 +2822,7 @@ config_cmp_addr_policies(addr_policy_t *a, addr_policy_t *b)
     return 0;
     return 0;
   if (a)
   if (a)
     return -1;
     return -1;
-  if (b)
+  else
     return 1;
     return 1;
 }
 }