diff options
author | Olaf Hering <olaf@aepfle.de> | 2018-03-05 08:17:15 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-06 20:57:16 +0300 |
commit | aba8a53264963514917e462f3fbbb66b3de79951 (patch) | |
tree | 316d71ad580264594761397a3ffeb24538848af4 | |
parent | 1330fc35327f3ecdfa1aa645e7321ced7349b2cd (diff) | |
download | linux-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>
-rw-r--r-- | tools/hv/hv_fcopy_daemon.c | 1 |
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> |