diff options
author | Jeremy Allison <jra@samba.org> | 2001-12-27 06:34:48 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-12-27 06:34:48 +0000 |
commit | d222a01e0f046883a602cc4591a400b8e65ef6b5 (patch) | |
tree | fc194966bc8770ad07d52ea8343bb73638f0f387 /source/utils/make_smbcodepage.c | |
parent | 26e4c4099c61c7ba9f2153e56061bea9882553d9 (diff) | |
download | samba-d222a01e0f046883a602cc4591a400b8e65ef6b5.tar.gz samba-d222a01e0f046883a602cc4591a400b8e65ef6b5.tar.xz samba-d222a01e0f046883a602cc4591a400b8e65ef6b5.zip |
Removed spurious (char *) casts in SAFE_FREE calls.
Jeremy.
Diffstat (limited to 'source/utils/make_smbcodepage.c')
-rw-r--r-- | source/utils/make_smbcodepage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/make_smbcodepage.c b/source/utils/make_smbcodepage.c index 46b0bf227bb..256dde7c0d1 100644 --- a/source/utils/make_smbcodepage.c +++ b/source/utils/make_smbcodepage.c @@ -209,7 +209,7 @@ The maximum size I will believe is 100k.\n", prog_name, size); { fprintf(stderr, "%s: read failed for file %s. Error was %s.\n", prog_name, input_file, strerror(errno)); - SAFE_FREE((char *)buf); + SAFE_FREE(buf); fclose(fp); exit(1); } |