diff --git a/src/servers/cddb_daemon/cddb_daemon.cpp b/src/servers/cddb_daemon/cddb_daemon.cpp index 7ce6cb2800..5418b4aebb 100644 --- a/src/servers/cddb_daemon/cddb_daemon.cpp +++ b/src/servers/cddb_daemon/cddb_daemon.cpp @@ -20,12 +20,12 @@ static const char* kCddaFsName = "cdda"; CDDBDaemon::CDDBDaemon() : BApplication("application/x-vnd.Haiku-CDDBDaemon") - , _volumeRoster(new BVolumeRoster) + , fVolumeRoster(new BVolumeRoster) { - _volumeRoster->StartWatching(); + fVolumeRoster->StartWatching(); BVolume volume; - while (_volumeRoster->GetNextVolume(&volume) == B_OK) { + while (fVolumeRoster->GetNextVolume(&volume) == B_OK) { uint32 cddbId; if (CanLookup(volume.Device(), &cddbId)) { printf("CD can be looked up. CDDB id = %lu.\n", cddbId); @@ -37,8 +37,8 @@ CDDBDaemon::CDDBDaemon() CDDBDaemon::~CDDBDaemon() { - _volumeRoster->StopWatching(); - delete _volumeRoster; + fVolumeRoster->StopWatching(); + delete fVolumeRoster; } diff --git a/src/servers/cddb_daemon/cddb_daemon.h b/src/servers/cddb_daemon/cddb_daemon.h index 58284baab7..8dcb36da31 100644 --- a/src/servers/cddb_daemon/cddb_daemon.h +++ b/src/servers/cddb_daemon/cddb_daemon.h @@ -20,7 +20,7 @@ public: private: bool CanLookup(const dev_t device, uint32* cddbId) const; - BVolumeRoster* _volumeRoster; + BVolumeRoster* fVolumeRoster; }; #endif