summaryrefslogtreecommitdiffstats
path: root/utils/mount/error.h
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2009-07-14 17:00:47 -0400
committerSteve Dickson <steved@redhat.com>2009-07-14 17:00:47 -0400
commit906f0b27730b0506a24ed43029983b4d6819dd12 (patch)
treef2d5f6a5d4fbbcd42844d4249562d4f3e17818b2 /utils/mount/error.h
parentd976ec69f0df3f19a3be9351f07086de54af42b9 (diff)
downloadnfs-utils-906f0b27730b0506a24ed43029983b4d6819dd12.tar.gz
nfs-utils-906f0b27730b0506a24ed43029983b4d6819dd12.tar.xz
nfs-utils-906f0b27730b0506a24ed43029983b4d6819dd12.zip
mount.nfs: Squelch compiler warnings in nfs_strerror()
Address compiler warnings: error.c: In function nfs_strerror: error.c:341: warning: comparison between signed and unsigned error.c:342: warning: comparison between signed and unsigned Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'utils/mount/error.h')
-rw-r--r--utils/mount/error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/mount/error.h b/utils/mount/error.h
index 7126de5..42b28cf 100644
--- a/utils/mount/error.h
+++ b/utils/mount/error.h
@@ -24,7 +24,7 @@
#ifndef _NFS_UTILS_MOUNT_ERROR_H
#define _NFS_UTILS_MOUNT_ERROR_H
-char *nfs_strerror(int);
+char *nfs_strerror(unsigned int);
void mount_error(const char *, const char *, int);
void rpc_mount_errors(char *, int, int);