summaryrefslogtreecommitdiff
path: root/src/authutil.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-08-08 22:17:27 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-08-08 22:20:26 -0700
commit4033226105fa861ab5f0276850afc24c0fa45406 (patch)
treeb1fa733e7b192caed635d3a181b06b95d58f5711 /src/authutil.c
parent10c30ae6a7df1a7c352a1d611a313dffcaa42082 (diff)
Get rid of casts to (char *) in calls to free()
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/authutil.c')
-rw-r--r--src/authutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/authutil.c b/src/authutil.c
index 908d4b1..2a98f19 100644
--- a/src/authutil.c
+++ b/src/authutil.c
@@ -287,7 +287,7 @@ IceFreeAuthFileEntry (
if (auth->network_id) free (auth->network_id);
if (auth->auth_name) free (auth->auth_name);
if (auth->auth_data) free (auth->auth_data);
- free ((char *) auth);
+ free (auth);
}
}