aboutsummaryrefslogtreecommitdiff
path: root/src/rps/rps-sampler_client.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rps/rps-sampler_client.c')
-rw-r--r--src/rps/rps-sampler_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rps/rps-sampler_client.c b/src/rps/rps-sampler_client.c
index 4904b9d43..fea824cf3 100644
--- a/src/rps/rps-sampler_client.c
+++ b/src/rps/rps-sampler_client.c
@@ -205,7 +205,6 @@ RPS_sampler_mod_init (size_t init_size,
205 sampler->get_peers = sampler_mod_get_rand_peer; 205 sampler->get_peers = sampler_mod_get_rand_peer;
206 //sampler->sampler_elements = GNUNET_new_array(init_size, struct GNUNET_PeerIdentity); 206 //sampler->sampler_elements = GNUNET_new_array(init_size, struct GNUNET_PeerIdentity);
207 //GNUNET_array_grow (sampler->sampler_elements, sampler->sampler_size, min_size); 207 //GNUNET_array_grow (sampler->sampler_elements, sampler->sampler_size, min_size);
208 RPS_sampler_resize (sampler, init_size);
209 208
210 client_get_index = 0; 209 client_get_index = 0;
211 210
@@ -220,6 +219,7 @@ RPS_sampler_mod_init (size_t init_size,
220 to_file (sampler->file_name, 219 to_file (sampler->file_name,
221 "This is a modified sampler"); 220 "This is a modified sampler");
222#endif /* TO_FILE */ 221#endif /* TO_FILE */
222 RPS_sampler_resize (sampler, init_size);
223 223
224 return sampler; 224 return sampler;
225} 225}