From 4e6513e713819e8264bfc6dfa984acd34229c18c Mon Sep 17 00:00:00 2001 From: Stefan Frederik Date: Sat, 8 Oct 2022 09:52:54 +0200 Subject: [PATCH] typo fix --- src/spice_netlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spice_netlist.c b/src/spice_netlist.c index f509bf2f..90ad10d4 100644 --- a/src/spice_netlist.c +++ b/src/spice_netlist.c @@ -817,7 +817,7 @@ Ptr_hashentry *ptr_hash_lookup(Ptr_hashtable *hashtable, const char *token, void void ptr_hash_init(Ptr_hashtable *hashtable, int size) { - if(hashtable-,>size !=0 || hashtable->table != NULL) { + if(hashtable->size !=0 || hashtable->table != NULL) { dbg(0, "ptr_hash_init(): Warning hash table not empty, possible data leak\n"); } hashtable->size = size;