From 1bf126c0b3bc3b6d73571bba4105f46bd1ad68ce Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 9 Mar 2012 16:24:56 +0100 Subject: s3: Remove some superfluous () --- source3/rpc_client/cli_lsarpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c index 66192bdf54..59ca3b0e17 100644 --- a/source3/rpc_client/cli_lsarpc.c +++ b/source3/rpc_client/cli_lsarpc.c @@ -299,7 +299,7 @@ static NTSTATUS dcerpc_lsa_lookup_sids_noalloc(struct dcerpc_binding_handle *h, domains[i] = talloc_strdup(domains, dom_name ? dom_name : ""); (types)[i] = lsa_names.names[i].sid_type; - if (((domains)[i] == NULL)) { + if ((domains)[i] == NULL) { DEBUG(0, ("cli_lsa_lookup_sids_noalloc(): out of memory\n")); *presult = NT_STATUS_UNSUCCESSFUL; return status; -- cgit