ide-tape: fix syntax error in idetape_identify_device()

Spotted by Sergei Shtylyov.

CC: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Borislav Petkov <petkovbb@gmail.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
Borislav Petkov 2008-02-06 02:57:54 +01:00 committed by Bartlomiej Zolnierkiewicz
parent bf6296b688
commit 24d57f8b28
1 changed files with 2 additions and 2 deletions

View File

@ -3275,7 +3275,7 @@ static int idetape_identify_device(ide_drive_t *drive)
printk(KERN_ERR "ide-tape: The removable flag is not set\n");
else if (packet_size != 0) {
printk(KERN_ERR "ide-tape: Packet size (0x%02x) is not 12"
"bytes long\n", packet_size);
" bytes\n", packet_size);
} else
return 1;
return 0;