Skip to content

Commit 352f74e

Browse files
committed
more c23 fixes
1 parent f342a83 commit 352f74e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyNN/neuron/nmodl/gif.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ ENDVERBATIM
208208
: independent of nhost or which host this instance is on
209209
: is desired, since each instance on this cpu draws from
210210
: the same stream
211-
value = scop_random(1)
211+
value = scop_random()
212212
VERBATIM
213213
}
214214
ENDVERBATIM

pyNN/neuron/nmodl/quantal_stp.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ VERBATIM
115115
return value;
116116
} else {
117117
ENDVERBATIM
118-
value = scop_random(1)
118+
value = scop_random()
119119
VERBATIM
120120
}
121121
ENDVERBATIM

pyNN/neuron/nmodl/stochastic_tsodyksmarkram.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ VERBATIM
118118
return value;
119119
} else {
120120
ENDVERBATIM
121-
value = scop_random(1)
121+
value = scop_random()
122122
VERBATIM
123123
}
124124
ENDVERBATIM

0 commit comments

Comments
 (0)