forked from len0rd/rockbox
Fix a wrong debug message.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20620 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b4f6b259ef
commit
a61e63cb41
1 changed files with 4 additions and 3 deletions
|
@ -198,12 +198,13 @@ BootloaderInstallBase::BootloaderType BootloaderInstallIpod::installed(void)
|
||||||
qDebug() << "BootloaderInstallIpod::installed(): BootloaderUnknown";
|
qDebug() << "BootloaderInstallIpod::installed(): BootloaderUnknown";
|
||||||
result = BootloaderUnknown;
|
result = BootloaderUnknown;
|
||||||
}
|
}
|
||||||
|
else if (ipod.ipod_directory[0].entryOffset == 0) {
|
||||||
if (ipod.ipod_directory[0].entryOffset == 0) {
|
|
||||||
qDebug() << "BootloaderInstallIpod::installed(): BootloaderOther";
|
qDebug() << "BootloaderInstallIpod::installed(): BootloaderOther";
|
||||||
result = BootloaderOther;
|
result = BootloaderOther;
|
||||||
}
|
}
|
||||||
qDebug() << "BootloaderInstallIpod::installed(): BootloaderRockbox";
|
else {
|
||||||
|
qDebug() << "BootloaderInstallIpod::installed(): BootloaderRockbox";
|
||||||
|
}
|
||||||
ipod_close(&ipod);
|
ipod_close(&ipod);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue