commit f4e51990b911161b26138f40f3d370eeafd9ac2f parent b2470f5140954db29e81498ad34d0c8cd7705064 Author: Nick Mathewson <nickm@torproject.org> Date: Tue, 12 Jun 2018 08:17:48 -0400 Merge remote-tracking branch 'rl1987/bug26283' Diffstat:
| A | changes/bug26283 | | | 4 | ++++ |
| M | src/or/routerlist.c | | | 2 | +- |
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/changes/bug26283 b/changes/bug26283 @@ -0,0 +1,4 @@ + o Minor bugfixes (C correctness): + - Avoid casting return value of smartlist_len() to double as + compiler does not like it when -Wbad-function-cast is on. + Fixes bug 26283; bugfix on 0.2.4.10-alpha. diff --git a/src/or/routerlist.c b/src/or/routerlist.c @@ -2764,7 +2764,7 @@ frac_nodes_with_descriptors(const smartlist_t *sl, if (node_has_any_descriptor(node)) n_with_descs++; }); - return ((double)n_with_descs) / (double)smartlist_len(sl); + return ((double)n_with_descs) / smartlist_len(sl); } present = 0.0;