diff options
author | Herb Lewis <herb@samba.org> | 2001-10-23 18:15:18 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2001-10-23 18:15:18 +0000 |
commit | 1b3123df48ca586b3d9c86a152354690836f6beb (patch) | |
tree | 298e9f20125e07912b1338aa98f7e01c0a7859d6 | |
parent | 5a482350a74e255b8db1ea3c8e76654d6f089f51 (diff) | |
download | samba-1b3123df48ca586b3d9c86a152354690836f6beb.tar.gz samba-1b3123df48ca586b3d9c86a152354690836f6beb.tar.xz samba-1b3123df48ca586b3d9c86a152354690836f6beb.zip |
IRIX compiler dies not like casts in macro args
-rw-r--r-- | source/smbd/oplock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/oplock.c b/source/smbd/oplock.c index 9d285d4ae38..340a0a3906e 100644 --- a/source/smbd/oplock.c +++ b/source/smbd/oplock.c @@ -1162,7 +1162,7 @@ void release_level_2_oplocks_on_change(files_struct *fsp) } } - SAFE_FREE((char *)share_list); + SAFE_FREE(share_list); unlock_share_entry_fsp(fsp); /* Paranoia check... */ |