mount: fix warning (printf field width of * wants int, not size_t)
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 6176de3..888e6d2 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -732,7 +732,7 @@
  * error_msg_rpc(clnt_*error*(" ")) */
 static void error_msg_rpc(const char *msg)
 {
-	size_t len;
+	int len;
 	while (msg[0] == ' ' || msg[0] == ':') msg++;
 	len = strlen(msg);
 	while (len && msg[len-1] == '\n') len--;