diff options
author | Richard Sharpe <sharpe@samba.org> | 2002-11-05 04:23:48 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2002-11-05 04:23:48 +0000 |
commit | 03d4866ecd27e45b03f3c5f797802a49f8259b4f (patch) | |
tree | 409cd01059196d2454903e64aec71b90b35e24eb /source3/utils | |
parent | ced085b0d2db152fc81ed2893917bf877a12ac62 (diff) | |
download | samba-03d4866ecd27e45b03f3c5f797802a49f8259b4f.tar.gz samba-03d4866ecd27e45b03f3c5f797802a49f8259b4f.tar.bz2 samba-03d4866ecd27e45b03f3c5f797802a49f8259b4f.zip |
See if char * makes the Irix C compiler happier than void *?
(This used to be commit 6b218da6453032339f2451a434d14894050dd1b5)
Diffstat (limited to 'source3/utils')
-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 96ab6d612c..70ac8ffcc0 100644 --- a/source3/utils/profiles.c +++ b/source3/utils/profiles.c @@ -531,7 +531,7 @@ int main(int argc, char *argv[]) int opt; int i, fd, aces, start = 0; int process_sids = 0; - void *base; + char *base; struct stat sbuf; fstring sid_str; REGF_HDR *regf_hdr; |