From 0eddf14b307e905663b95296aa695a10d3fb90f7 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 24 Apr 2006 09:36:09 +0000 Subject: r15191: Avoid uint_t as it's not standard. (This used to be commit 7af59357b94e3819415b3a9257be0ced745ce130) --- source4/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/client/client.c') diff --git a/source4/client/client.c b/source4/client/client.c index 4e84987b40..328fd8d853 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -2186,7 +2186,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, (uint_t)mode); + smbcli_errstr(ctx->cli->tree), src, (mode_t)mode); return 1; } -- cgit