server: Remove dead assignment (clang).

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
André Hentschel 2017-01-30 23:11:07 +01:00 committed by Alexandre Julliard
parent 1242648fae
commit 6b85b31b00
1 changed files with 1 additions and 2 deletions

View File

@ -1080,8 +1080,7 @@ DECL_HANDLER(adjust_token_privileges)
if (req->disable_all)
token_disable_privileges( token );
else
modified_priv_count = token_adjust_privileges( token, privs,
priv_count, modified_privs, modified_priv_count );
token_adjust_privileges( token, privs, priv_count, modified_privs, modified_priv_count );
release_object( token );
}