mount: fix warning (printf field width of * wants int, not size_t)

This commit is contained in:
Denis Vlasenko 2006-09-19 14:07:52 +00:00
parent f70265290c
commit 23514fe251

View File

@ -732,7 +732,7 @@ static inline int we_saw_this_host_before(const char *hostname)
* 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--;