aboutsummaryrefslogtreecommitdiff
path: root/driver-ti.c
diff options
context:
space:
mode:
Diffstat (limited to 'driver-ti.c')
-rw-r--r--driver-ti.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver-ti.c b/driver-ti.c
index f73d970..727cb78 100644
--- a/driver-ti.c
+++ b/driver-ti.c
@@ -46,7 +46,7 @@ static int register_seq(termkey_ti *ti, const char *seq, termkey_type type, term
static struct trie_node *new_node_key(termkey_type type, termkey_keysym sym, int modmask, int modset)
{
- struct trie_node_key *n = malloc(sizeof(struct trie_node_key));
+ struct trie_node_key *n = malloc(sizeof(*n));
if(!n)
return NULL;
@@ -62,7 +62,7 @@ static struct trie_node *new_node_key(termkey_type type, termkey_keysym sym, int
static struct trie_node *new_node_arr(unsigned char min, unsigned char max)
{
- struct trie_node_arr *n = malloc(sizeof(struct trie_node_arr) + ((int)max-min+1) * sizeof(void*));
+ struct trie_node_arr *n = malloc(sizeof(*n) + ((int)max-min+1) * sizeof(n->arr[0]));
if(!n)
return NULL;