diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-04-26 10:36:49 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-04-26 10:36:49 -0400 |
commit | 1d44ac9acd6264141615b5fce6d537544dc6f52e (patch) | |
tree | d945147e0593271bcc77a34f048c937cb3087b9b /src/test/test_helpers.c | |
parent | efeb101b968fe6604ff97604afe527a36b94cfc9 (diff) | |
download | tor-1d44ac9acd6264141615b5fce6d537544dc6f52e.tar.gz tor-1d44ac9acd6264141615b5fce6d537544dc6f52e.zip |
Make nodelist_get_list() return a const pointer.
Diffstat (limited to 'src/test/test_helpers.c')
-rw-r--r-- | src/test/test_helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_helpers.c b/src/test/test_helpers.c index 13de1e154b..489c257761 100644 --- a/src/test/test_helpers.c +++ b/src/test/test_helpers.c @@ -78,7 +78,7 @@ helper_setup_fake_routerlist(void) { int retval; routerlist_t *our_routerlist = NULL; - smartlist_t *our_nodelist = NULL; + const smartlist_t *our_nodelist = NULL; /* Read the file that contains our test descriptors. */ |