summaryrefslogtreecommitdiff
path: root/synth/readwave.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'synth/readwave.cpp')
-rw-r--r--synth/readwave.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/synth/readwave.cpp b/synth/readwave.cpp
index 08106ca..0b2c0a0 100644
--- a/synth/readwave.cpp
+++ b/synth/readwave.cpp
@@ -102,7 +102,7 @@ void read_wave(const char *fn, custom_wave_t *result)
result->wave=new fixed_t[n_samples];
double sample;
- for (int i=0;i<n_samples;i++)
+ for (int i=0;i<n_samples;++i)
{
if (feof(f))
throw string("unexpected end-of-file");