diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-06-13 22:44:30 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-06-13 22:44:30 +0000 |
commit | 9a74e881efac170df9787e7a69cc87e4ef20a862 (patch) | |
tree | a76747f7ee4e62a571c37335abab3aa0bebcd9f9 | |
parent | a8e88adba4dc042ce7e04e69e705f0e43c1452ca (diff) | |
download | tor-9a74e881efac170df9787e7a69cc87e4ef20a862.tar tor-9a74e881efac170df9787e7a69cc87e4ef20a862.tar.gz |
r13413@catbus: nickm | 2007-06-13 18:44:28 -0400
Non-static inline functions cant talk about static variables.
svn:r10599
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 4ff3659da..0df2f7f57 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -113,7 +113,7 @@ static int have_warned_about_new_version = 0; /** Return the number of directory authorities whose type matches some bit set * in <b>type</b> */ -INLINE int +int get_n_authorities(authority_type_t type) { int n = 0; |