diff options
author | Richard Sharpe <sharpe@samba.org> | 2003-01-16 23:29:14 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2003-01-16 23:29:14 +0000 |
commit | da0603c0c34c716b7c9eb089388462d52ad1c60b (patch) | |
tree | 33865cb54c7212490be28042cf265def62fddd9b | |
parent | 6b2eb72df0bcf9143d013e64410ebde78d57b1c4 (diff) | |
download | samba-da0603c0c34c716b7c9eb089388462d52ad1c60b.tar.gz samba-da0603c0c34c716b7c9eb089388462d52ad1c60b.tar.bz2 samba-da0603c0c34c716b7c9eb089388462d52ad1c60b.zip |
Merge the fix from head about short variables.
(This used to be commit e408bf329163e45e60ebd1aef648f79aaeef1c13)
-rw-r--r-- | source3/utils/profiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/profiles.c b/source3/utils/profiles.c index 9424233e11..14b480cd16 100644 --- a/source3/utils/profiles.c +++ b/source3/utils/profiles.c @@ -537,7 +537,7 @@ int main(int argc, char *argv[]) HBIN_HDR *hbin_hdr; NK_HDR *nk_hdr; SK_HDR *sk_hdr; - WORD first_sk_off, sk_off; + DWORD first_sk_off, sk_off; MY_SEC_DESC *sec_desc; int *ptr; |