E-PlayCD: Show device file name in error messages.

SVN revision: 38412
This commit is contained in:
Kim Woelders 2009-01-01 20:42:25 +00:00
parent 6d8b0e7594
commit 5c6abb57ff
1 changed files with 1 additions and 1 deletions

View File

@ -535,7 +535,7 @@ open_cdrom(char *cdrom_device)
{
if ((cd_desc = cd_init_device(cdrom_device)) < 0)
{
printf("error\n");
printf("Could not open %s\n", cdrom_device);
exit(0);
}
}