Fix spelling mistake: seek

Replace wrong "set" by correct "seek" in error message.

Signed-off-by: Philipp Hahn <hahn@univention.de>
This commit is contained in:
Philipp Hahn 2011-02-24 08:06:03 +01:00 committed by Eric Blake
parent 1aaef5ad72
commit 0905d1ee95

View File

@ -824,7 +824,7 @@ virStorageFileGetMetadataFromFD(const char *path,
memset(meta, 0, sizeof (*meta));
if (lseek(fd, 0, SEEK_SET) == (off_t)-1) {
virReportSystemError(errno, _("cannot set to start of '%s'"), path);
virReportSystemError(errno, _("cannot seek to start of '%s'"), path);
goto cleanup;
}