diff options
Diffstat (limited to 'source4/client')
-rw-r--r-- | source4/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index 93d6f34495..c6c0088b3c 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -2251,7 +2251,7 @@ static int cmd_chmod(struct smbclient_context *ctx, const char **args) if (NT_STATUS_IS_ERR(smbcli_unix_chmod(ctx->cli->tree, src, mode))) { d_printf("%s chmod file %s 0%o\n", - smbcli_errstr(ctx->cli->tree), src, (mode_t)mode); + smbcli_errstr(ctx->cli->tree), src, (unsigned)mode); return 1; } |