summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2018-03-04 22:17:15 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-03-06 09:57:16 -0800
commitaba8a53264963514917e462f3fbbb66b3de79951 (patch)
tree316d71ad580264594761397a3ffeb24538848af4 /tools
parent1330fc35327f3ecdfa1aa645e7321ced7349b2cd (diff)
downloadlinux-0-day-aba8a53264963514917e462f3fbbb66b3de79951.tar.gz
linux-0-day-aba8a53264963514917e462f3fbbb66b3de79951.tar.xz
tools: hv: include string.h in hv_fcopy_daemon
The usage of strchr requires inclusion of string.h. Fixes: 0c38cda64aec ("tools: hv: remove unnecessary header files and netlink related code") Signed-off-by: Olaf Hering <olaf@aepfle.de> Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/hv/hv_fcopy_daemon.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/hv/hv_fcopy_daemon.c b/tools/hv/hv_fcopy_daemon.c
index 785f4e95148cf..d78aed86af09b 100644
--- a/tools/hv/hv_fcopy_daemon.c
+++ b/tools/hv/hv_fcopy_daemon.c
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
+#include <string.h>
#include <errno.h>
#include <linux/hyperv.h>
#include <linux/limits.h>