Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alexmarsev/soxr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/1a-lsr.c')
-rw-r--r--examples/1a-lsr.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/1a-lsr.c b/examples/1a-lsr.c
index 90a1cc9..e42e530 100644
--- a/examples/1a-lsr.c
+++ b/examples/1a-lsr.c
@@ -32,6 +32,9 @@ int main(int argc, char const * arg[])
printf("%5.2f%c", out[i-1], " \n"[!(i&7) || i == data.output_frames_gen]);
printf("%-26s %s\n", arg[0], src_strerror(error)); /* and reported result. */
+ if (argc > 3) /* Library version check: */
+ printf("runtime=%s\n", src_get_version());
+
free(out); /* Tidy up. */
return !!error;
}