summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-01-03 18:05:19 +0100
committerRobin Gareus <robin@gareus.org>2018-01-03 18:06:55 +0100
commit7671268bc3a4d341035de5cf4c10519831e967b2 (patch)
tree9807fc06e562d5892dfe447798bf2067c227fc1c
parent15fa89c8dd30e42f461f788d0b7be30f11e68a82 (diff)
strlen is not a member of std.
-rw-r--r--libs/backends/coreaudio/coreaudio_pcmio.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/backends/coreaudio/coreaudio_pcmio.cc b/libs/backends/coreaudio/coreaudio_pcmio.cc
index 480fa6f424..971e2fac3c 100644
--- a/libs/backends/coreaudio/coreaudio_pcmio.cc
+++ b/libs/backends/coreaudio/coreaudio_pcmio.cc
@@ -1067,7 +1067,7 @@ CoreAudioPCM::cache_port_names(AudioDeviceID id, bool input)
ss << (c + 1);
- if (cstr_name && decoded && (0 != std::strlen(cstr_name) ) ) {
+ if (cstr_name && decoded && (0 != ::strlen(cstr_name) ) ) {
ss << " - " << cstr_name;
}
#if 0