summaryrefslogtreecommitdiff
path: root/tests/audiogen.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/audiogen.c')
-rw-r--r--tests/audiogen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/audiogen.c b/tests/audiogen.c
index ce6f7854ea..7f9caedd4e 100644
--- a/tests/audiogen.c
+++ b/tests/audiogen.c
@@ -177,7 +177,7 @@ int main(int argc, char **argv)
return 1;
}
- if ((ext = strrchr(argv[1], '.')) != NULL && !strcmp(ext, ".wav"))
+ if ((ext = strrchr(argv[1], '.')) && !strcmp(ext, ".wav"))
put_wav_header(sample_rate, nb_channels, 6 * sample_rate);
/* 1 second of single freq sine at 1000 Hz */