aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/printf_hook.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstrongswan/printf_hook.c')
-rw-r--r--src/libstrongswan/printf_hook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/printf_hook.c b/src/libstrongswan/printf_hook.c
index 0475c3ec9..f46718953 100644
--- a/src/libstrongswan/printf_hook.c
+++ b/src/libstrongswan/printf_hook.c
@@ -99,7 +99,7 @@ static int custom_print(FILE *stream, const struct printf_info *info,
written = handler->hook(buf, sizeof(buf), &spec, args);
if (written > 0)
{
- fwrite(buf, 1, written, stream);
+ ignore_result(fwrite(buf, 1, written, stream));
}
return written;
}