From fd51447966d403b5f41b901a597dde17293704b0 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 26 Jul 2007 11:52:23 +0200 Subject: [PATCH] crypt32: Don't use off_t for memory offsets. --- dlls/crypt32/encode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/crypt32/encode.c b/dlls/crypt32/encode.c index 7359ed88a64..e6695cf9a0c 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; };