git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b854ff3
)
daemon: Fix sync() call on Unix.
author
Richard Jones
<rjones@redhat.com>
Wed, 25 Nov 2009 16:54:46 +0000
(16:54 +0000)
committer
Richard Jones
<rjones@redhat.com>
Wed, 25 Nov 2009 16:54:46 +0000
(16:54 +0000)
daemon/sync.c
patch
|
blob
|
history
diff --git
a/daemon/sync.c
b/daemon/sync.c
index
2cdb10c
..
37e8faa
100644
(file)
--- a/
daemon/sync.c
+++ b/
daemon/sync.c
@@
-51,7
+51,8
@@
int
sync_disks (void)
{
#if defined(HAVE_SYNC)
- return sync ();
+ sync ();
+ return 0;
#elif defined(WIN32)
return sync_win32 ();
#else