aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/hashtab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hashtab.c b/src/hashtab.c
index 600b345..f7cb0aa 100644
--- a/src/hashtab.c
+++ b/src/hashtab.c
@@ -61,7 +61,7 @@ hashent_list_init(struct hashent_list *list)
static int
hashent_list_append(struct hashent_list *list, struct hashent *ent)
{
- struct hashent_list_entry *hent = malloc(sizeof(*ent));
+ struct hashent_list_entry *hent = malloc(sizeof(*hent));
if (!hent)
return -1;
hent->ent = ent;

Return to:

Send suggestions and report system problems to the System administrator.