summaryrefslogtreecommitdiffhomepage
path: root/examples/gauss2.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gauss2.c')
-rw-r--r--examples/gauss2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gauss2.c b/examples/gauss2.c
index 2e07c5a5..6bbd7fb3 100644
--- a/examples/gauss2.c
+++ b/examples/gauss2.c
@@ -25,7 +25,7 @@ int main()
// Create and init histogram map with defered destruct
c_auto (csmap_int, mhist)
{
- c_forrange (N) {
+ c_forloop (N) {
int index = (int) round( stc64_normalf(&rng, &dist) );
csmap_int_insert(&mhist, index, 0).ref->second += 1;
}