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_unicodemap.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_unicodemap.c')
-rw-r--r-- | source/utils/make_unicodemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/make_unicodemap.c b/source/utils/make_unicodemap.c index 926f21d85c5..79c63ff003c 100644 --- a/source/utils/make_unicodemap.c +++ b/source/utils/make_unicodemap.c @@ -172,7 +172,7 @@ static int do_compile(const char *codepage, const char *input_file, const char * if(fread( buf, 1, size, fp) != 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); } |