diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-07-01 10:46:13 -0300 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-07-05 11:23:30 +0200 |
commit | e7ff8f0e0c03853c5018d683b28b338b9738588a (patch) | |
tree | 9e0589c0b306ba4856848224598606bd26d2ea39 /blockdev.c | |
parent | 2d3999fe13b5e4663fd8ffc3661b1ffd44130e55 (diff) |
block: drive_init(): Improve CHS setting error message
The current message doesn't clearly communicate the error cause.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'blockdev.c')
-rw-r--r-- | blockdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blockdev.c b/blockdev.c index 470be71cbf..a97a801e95 100644 --- a/blockdev.c +++ b/blockdev.c @@ -310,7 +310,7 @@ DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi) media = MEDIA_DISK; } else if (!strcmp(buf, "cdrom")) { if (cyls || secs || heads) { - error_report("'%s' invalid physical CHS format", buf); + error_report("CHS can't be set with media=%s", buf); return NULL; } media = MEDIA_CDROM; |