Proper inheritance, etc

This commit is contained in:
Jaime Thomas
2008-05-15 00:14:33 +00:00
parent 0b2157dff6
commit fe3e1cc9f0
11 changed files with 302 additions and 138 deletions

View File

@@ -146,18 +146,18 @@ ecdb_aquire_drive(Ecdb_Project *proj, unsigned int idx)
if (burn_drive_convert_fs_adr(info->location, adr) <= 0)
{
printf("Error: Address doesn't provide cd burner!\n");
return 1;
return FALSE;
}
if (burn_drive_scan_and_grab(&info->tangible, adr, 1) > 0)
{
proj->drive = info;
return 0;
return TRUE;
}
else
{
info->tangible = NULL;
return 1;
return FALSE;
}
}