From 937bf98473c72c4f2306b0fcc3166df854530cd6 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 19 May 2021 20:35:10 -0400 Subject: [PATCH] nctabbed: spelling (alocate -> allocate) --- src/lib/tabbed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/tabbed.c b/src/lib/tabbed.c index ddd3f4cca..a475a54d6 100644 --- a/src/lib/tabbed.c +++ b/src/lib/tabbed.c @@ -217,7 +217,7 @@ nctab* nctabbed_add(nctabbed* nt, nctab* after, nctab* before, tabcb cb, after = nt->selected; } if((t = malloc(sizeof(*t))) == NULL){ - logerror(nc, "Couldn't alocate nctab") + logerror(nc, "Couldn't allocate nctab") return NULL; } if((t->name = strdup(name)) == NULL){