tests: Ignore return value from fwrite.

This commit is contained in:
Richard W.M. Jones
2011-03-16 11:50:16 +00:00
parent 6bb4d13d71
commit eb6119da38
2 changed files with 6 additions and 2 deletions

View File

@@ -117,9 +117,11 @@ test_private_data_LDADD = \
test_debug_to_file_SOURCES = test-debug-to-file.c
test_debug_to_file_CFLAGS = \
-I$(top_srcdir)/src -I$(top_builddir)/src \
-I$(top_srcdir)/gnulib/lib \
$(WARN_CFLAGS) $(WERROR_CFLAGS)
test_debug_to_file_LDADD = \
$(top_builddir)/src/libguestfs.la
$(top_builddir)/src/libguestfs.la \
../gnulib/lib/libgnu.la
#if HAVE_LIBVIRT
#test_add_libvirt_dom_SOURCES = test-add-libvirt-dom.c

View File

@@ -27,6 +27,8 @@
#include <string.h>
#include <unistd.h>
#include "ignore-value.h"
#include "guestfs.h"
static void
@@ -40,7 +42,7 @@ debug_to_file (guestfs_h *g,
{
FILE *fp = opaque;
fwrite (buf, 1, buf_len, fp);
ignore_value (fwrite (buf, 1, buf_len, fp));
}
int