diff options
Diffstat (limited to 'src/ClientID.hpp')
-rw-r--r-- | src/ClientID.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientID.hpp b/src/ClientID.hpp index f918ea4..dbe5b75 100644 --- a/src/ClientID.hpp +++ b/src/ClientID.hpp @@ -72,7 +72,7 @@ operator<<(std::ostream& os, const ClientID& id) case ClientID::Type::jack: return os << "jack:" << id.jack_name(); case ClientID::Type::alsa: - return os << "alsa:" << int(id.alsa_id()); + return os << "alsa:" << static_cast<int>(id.alsa_id()); } assert(false); |