Andrew Talbot : secur32: Remove unneeded casts.

Alexandre Julliard julliard at winehq.org
Mon Jan 21 05:58:53 CST 2008


Module: wine
Branch: master
Commit: e4ca5c564790983e78e522613204f9fff24c4237
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e4ca5c564790983e78e522613204f9fff24c4237

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Fri Jan 18 21:27:09 2008 +0000

secur32: Remove unneeded casts.

---

 dlls/secur32/ntlm.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/secur32/ntlm.c b/dlls/secur32/ntlm.c
index f50b4c6..3dbdd83 100644
--- a/dlls/secur32/ntlm.c
+++ b/dlls/secur32/ntlm.c
@@ -832,9 +832,9 @@ static SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(
         helper->crypt.ntlm2.send_a4i = SECUR32_arc4Alloc();
         helper->crypt.ntlm2.recv_a4i = SECUR32_arc4Alloc();
         SECUR32_arc4Init(helper->crypt.ntlm2.send_a4i,
-                (BYTE *)helper->crypt.ntlm2.send_seal_key, 16);
+                         helper->crypt.ntlm2.send_seal_key, 16);
         SECUR32_arc4Init(helper->crypt.ntlm2.recv_a4i,
-               (BYTE *)helper->crypt.ntlm2.recv_seal_key, 16);
+                         helper->crypt.ntlm2.recv_seal_key, 16);
         helper->crypt.ntlm2.send_seq_no = 0l;
         helper->crypt.ntlm2.recv_seq_no = 0l;
     }




More information about the wine-cvs mailing list