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

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2011-08-02 20:39:54 +0400
committerRalph Giles <giles@thaumas.net>2011-08-02 20:45:04 +0400
commite308edf82c5594592b3a1b54e67620572d700313 (patch)
tree5595d38d2aa811136d93b0ef60e522f106a607ea /src/opus.c
parent50f933b57f078d7ad25a6c1fe0e8aa70c5c611bc (diff)
Prepend "Opus" to the version string.
This lets users print it out without context, which is a little easier for clients.
Diffstat (limited to 'src/opus.c')
-rw-r--r--src/opus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opus.c b/src/opus.c
index 55e76d93..a7d84278 100644
--- a/src/opus.c
+++ b/src/opus.c
@@ -55,5 +55,5 @@ const char *opus_strerror(int error)
const char *opus_get_version_string(void)
{
- return OPUS_VERSION;
+ return "Opus " OPUS_VERSION;
}