diff options
Diffstat (limited to 'src/authutil.c')
-rw-r--r-- | src/authutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/authutil.c b/src/authutil.c index 2a98f19..a8d2a22 100644 --- a/src/authutil.c +++ b/src/authutil.c @@ -255,7 +255,7 @@ IceReadAuthFileEntry ( &local.auth_data_length, &local.auth_data)) goto bad; - if (!(ret = (IceAuthFileEntry *) malloc (sizeof (IceAuthFileEntry)))) + if (!(ret = malloc (sizeof (IceAuthFileEntry)))) goto bad; *ret = local; |