[libvirt] [PATCH] build: fix build without posix_fallocate

Eric Blake eblake at redhat.com
Thu Jun 6 02:34:17 UTC 2013


Such as on FreeBSD.  Broken in commit aa2a4cff7

* src/util/virstoragefile.c (virStorageFileResize): Add missing ';'.

Signed-off-by: Eric Blake <eblake at redhat.com>
---

Pushing under the build-breaker rule.

 src/util/virstoragefile.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/util/virstoragefile.c b/src/util/virstoragefile.c
index bf668c8..b861fd8 100644
--- a/src/util/virstoragefile.c
+++ b/src/util/virstoragefile.c
@@ -1074,7 +1074,7 @@ virStorageFileResize(const char *path,
         }
 #else
         virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
-                       _("preallocate is not supported on this platform"))
+                       _("preallocate is not supported on this platform"));
         goto cleanup;
 #endif
     } else {
-- 
1.8.1.4




More information about the libvir-list mailing list