Alexandre Julliard : crypt32: Don't use off_t for memory offsets.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Jul 26 06:37:19 CDT 2007


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Jul 26 11:52:23 2007 +0200

crypt32: Don't use off_t for memory offsets.

---

 dlls/crypt32/encode.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/crypt32/encode.c b/dlls/crypt32/encode.c
index 7359ed8..e6695cf 100644
--- a/dlls/crypt32/encode.c
+++ b/dlls/crypt32/encode.c
@@ -1215,7 +1215,7 @@ struct DERSetDescriptor
     DWORD                   cItems;
     const void             *items;
     size_t                  itemSize;
-    off_t                   itemOffset;
+    size_t                  itemOffset;
     CryptEncodeObjectExFunc encode;
 };
 




More information about the wine-cvs mailing list