diff options
author | Matthew Weber <matthew.weber@rockwellcollins.com> | 2017-10-05 10:46:57 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2017-10-05 10:47:54 -0400 |
commit | 1d7e3a4808e1b8514af6342c1b49aaf08825b08f (patch) | |
tree | 8774749fabaee6fffe0895871603fc56c854822b | |
parent | 0994dc1bb7b348b7bec30f8053841e6d22caf633 (diff) | |
download | nfs-utils-1d7e3a4808e1b8514af6342c1b49aaf08825b08f.tar.gz nfs-utils-1d7e3a4808e1b8514af6342c1b49aaf08825b08f.tar.xz nfs-utils-1d7e3a4808e1b8514af6342c1b49aaf08825b08f.zip |
nfs-utils: add missing include of stdint.h
Glibc bump to 2.26 exposed this missing header when building
with the following combination using an i386 internal toolchain.
gcc5.4.0
bin2.28.1
linux4.1.43
Upstream: https://bugzilla.linux-nfs.org/show_bug.cgi?id=312
Reviewed-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | support/nsm/rpc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/nsm/rpc.c b/support/nsm/rpc.c index 0a8e56f..ae49006 100644 --- a/support/nsm/rpc.c +++ b/support/nsm/rpc.c @@ -41,6 +41,7 @@ #include <stdint.h> #include <time.h> #include <stdbool.h> +#include <stdint.h> #include <string.h> #include <unistd.h> #include <fcntl.h> |