mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
tests: Ignore return value from fwrite.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user