aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/codecs.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-12-06 20:49:12 +0100
committerPeter Wu <peter@lekensteyn.nl>2016-12-07 00:51:14 +0000
commitfc4bb7eb7413affa63049516c4dbc46ca272abea (patch)
tree6bffd44f7b8bd8be9e9a7178bdbc3688093e14f3 /codecs/codecs.c
parent47829b9611b613425aa0a314224863b02b915ea2 (diff)
Change SpanDSP capitalization
Many capitalization can be found for this library (spandsp, Spandsp, SpanDSP), let's use the one found in the library README and in its spec file. Change-Id: Ia66b723e5d582a6218da1b6366b7d4859272f80c Reviewed-on: https://code.wireshark.org/review/19122 Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'codecs/codecs.c')
-rw-r--r--codecs/codecs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/codecs/codecs.c b/codecs/codecs.c
index 447ee67793..4001a8d426 100644
--- a/codecs/codecs.c
+++ b/codecs/codecs.c
@@ -247,11 +247,11 @@ void codec_get_compiled_version_info(GString *str)
g_string_append(str, ", without SBC");
#endif
- /* Spandsp (G.722, G.726) */
+ /* SpanDSP (G.722, G.726) */
#ifdef HAVE_SPANDSP
- g_string_append(str, ", with Spandsp");
+ g_string_append(str, ", with SpanDSP");
#else
- g_string_append(str, ", without Spandsp");
+ g_string_append(str, ", without SpanDSP");
#endif
}