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 | 6b218da6453032339f2451a434d14894050dd1b5 (patch) | |
tree | 6c242cda48c5f0fd62de6a2941f117b27dbf2b1d /source/utils/profiles.c | |
parent | cf6d2d9d9e2adbbb7a547784cb11d05ed624e410 (diff) | |
download | samba-6b218da6453032339f2451a434d14894050dd1b5.tar.gz samba-6b218da6453032339f2451a434d14894050dd1b5.tar.xz samba-6b218da6453032339f2451a434d14894050dd1b5.zip |
See if char * makes the Irix C compiler happier than void *?
Diffstat (limited to 'source/utils/profiles.c')
-rw-r--r-- | source/utils/profiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/profiles.c b/source/utils/profiles.c index 96ab6d612c2..70ac8ffcc09 100644 --- a/source/utils/profiles.c +++ b/source/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; |