From 1c3f5517fabc264d7b37935bd37197cdd68250ba Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Wed, 21 Jan 2015 22:36:13 +0100
Subject: config/Option: convert to strictly-typed enum

---
 src/lib/despotify/DespotifyUtils.cxx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'src/lib')

diff --git a/src/lib/despotify/DespotifyUtils.cxx b/src/lib/despotify/DespotifyUtils.cxx
index e62994c6a..c72715ace 100644
--- a/src/lib/despotify/DespotifyUtils.cxx
+++ b/src/lib/despotify/DespotifyUtils.cxx
@@ -124,9 +124,9 @@ mpd_despotify_get_session()
 		return g_session;
 
 	const char *const user =
-		config_get_string(CONF_DESPOTIFY_USER, nullptr);
+		config_get_string(ConfigOption::DESPOTIFY_USER, nullptr);
 	const char *const passwd =
-		config_get_string(CONF_DESPOTIFY_PASSWORD, nullptr);
+		config_get_string(ConfigOption::DESPOTIFY_PASSWORD, nullptr);
 
 	if (user == nullptr || passwd == nullptr) {
 		LogDebug(despotify_domain,
@@ -140,7 +140,7 @@ mpd_despotify_get_session()
 	}
 
 	const bool high_bitrate =
-		config_get_bool(CONF_DESPOTIFY_HIGH_BITRATE, true);
+		config_get_bool(ConfigOption::DESPOTIFY_HIGH_BITRATE, true);
 	g_session = despotify_init_client(callback, nullptr,
 					  high_bitrate, true);
 	if (!g_session) {
-- 
cgit v1.2.3