diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-19 14:07:52 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-19 14:07:52 +0000 |
commit | 9690ba7953684752f283cb4e030ed222208e9411 (patch) | |
tree | 728ee0321b9916bfac910c0d8a0f237338170de7 | |
parent | c57c1e8a6baed294de7bafa2445ec08bbc789582 (diff) | |
download | busybox-w32-9690ba7953684752f283cb4e030ed222208e9411.tar.gz busybox-w32-9690ba7953684752f283cb4e030ed222208e9411.tar.bz2 busybox-w32-9690ba7953684752f283cb4e030ed222208e9411.zip |
mount: fix warning (printf field width of * wants int, not size_t)
git-svn-id: svn://busybox.net/trunk/busybox@16147 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | util-linux/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 6176de3a1..888e6d22f 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -732,7 +732,7 @@ static inline int we_saw_this_host_before(const char *hostname) | |||
732 | * error_msg_rpc(clnt_*error*(" ")) */ | 732 | * error_msg_rpc(clnt_*error*(" ")) */ |
733 | static void error_msg_rpc(const char *msg) | 733 | static void error_msg_rpc(const char *msg) |
734 | { | 734 | { |
735 | size_t len; | 735 | int len; |
736 | while (msg[0] == ' ' || msg[0] == ':') msg++; | 736 | while (msg[0] == ' ' || msg[0] == ':') msg++; |
737 | len = strlen(msg); | 737 | len = strlen(msg); |
738 | while (len && msg[len-1] == '\n') len--; | 738 | while (len && msg[len-1] == '\n') len--; |