From 0905d1ee950a37a8764a0f8dfc31be80b2b564c3 Mon Sep 17 00:00:00 2001 From: Philipp Hahn Date: Thu, 24 Feb 2011 08:06:03 +0100 Subject: [PATCH] Fix spelling mistake: seek Replace wrong "set" by correct "seek" in error message. Signed-off-by: Philipp Hahn --- src/util/storage_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/storage_file.c b/src/util/storage_file.c index 4faa99d8b3..62dad0d8c4 100644 --- a/src/util/storage_file.c +++ b/src/util/storage_file.c @@ -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; }