aboutsummaryrefslogtreecommitdiff
path: root/driver-ti.c
diff options
context:
space:
mode:
Diffstat (limited to 'driver-ti.c')
-rw-r--r--driver-ti.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver-ti.c b/driver-ti.c
index 00090bd..9b67c4f 100644
--- a/driver-ti.c
+++ b/driver-ti.c
@@ -180,7 +180,7 @@ static void register_seq(termkey_ti *ti, const char *seq, termkey_type type, ter
if(ti->nseqs == ti->alloced_seqs) {
ti->alloced_seqs *= 2;
void *newseqs = realloc(ti->seqs, ti->alloced_seqs * sizeof(ti->seqs[9]));
- // TODO: Error handle
+ // TODO: Handle realloc() failure
ti->seqs = newseqs;
}