- Small style change.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28936 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Bruno G. Albuquerque
2009-01-18 16:05:46 +00:00
parent 35336d367e
commit b100149cb4
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -36,7 +36,7 @@ CDDBDaemon::CDDBDaemon()
continue; continue;
uint32 cddbId; uint32 cddbId;
if (CanLookup(volume.Device(), &cddbId, toc)) { if (_CanLookup(volume.Device(), &cddbId, toc)) {
printf("CD can be looked up. CDDB id = %lu.\n", cddbId); printf("CD can be looked up. CDDB id = %lu.\n", cddbId);
// TODO(bga): Implement and enable CDDB database lookup. // TODO(bga): Implement and enable CDDB database lookup.
} }
@@ -68,7 +68,7 @@ CDDBDaemon::MessageReceived(BMessage* message)
break; break;
uint32 cddbId; uint32 cddbId;
if (CanLookup(device, &cddbId, toc)) { if (_CanLookup(device, &cddbId, toc)) {
printf("CD can be looked up. CDDB id = %lu.\n", printf("CD can be looked up. CDDB id = %lu.\n",
cddbId); cddbId);
// TODO(bga): Implement and enable CDDB // TODO(bga): Implement and enable CDDB
@@ -86,7 +86,7 @@ CDDBDaemon::MessageReceived(BMessage* message)
bool bool
CDDBDaemon::CanLookup(const dev_t device, uint32* cddbId, CDDBDaemon::_CanLookup(const dev_t device, uint32* cddbId,
scsi_toc_toc* toc) const scsi_toc_toc* toc) const
{ {
if (cddbId == NULL || toc == NULL) if (cddbId == NULL || toc == NULL)
+1 -1
View File
@@ -23,7 +23,7 @@ public:
virtual void MessageReceived(BMessage* message); virtual void MessageReceived(BMessage* message);
private: private:
bool CanLookup(const dev_t device, uint32* cddbId, bool _CanLookup(const dev_t device, uint32* cddbId,
scsi_toc_toc* toc) const; scsi_toc_toc* toc) const;
BVolumeRoster* fVolumeRoster; BVolumeRoster* fVolumeRoster;