aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlaf Hering <[email protected]>2018-03-04 22:17:15 -0700
committerGreg Kroah-Hartman <[email protected]>2018-03-06 09:57:16 -0800
commitaba8a53264963514917e462f3fbbb66b3de79951 (patch)
tree316d71ad580264594761397a3ffeb24538848af4
parent1330fc35327f3ecdfa1aa645e7321ced7349b2cd (diff)
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 <[email protected]> Signed-off-by: K. Y. Srinivasan <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-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 785f4e95148c..d78aed86af09 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>