commit 536450338a0166c0e49ca54389a1ec61a897b54e
parent 23f0fee730c9ddae02ff7fbf449f70d1f56a1192
Author: Bor Grošelj Simić <bgs@turminal.net>
Date: Sat, 18 Feb 2023 04:26:44 +0100
assert suitable typeflag combination was found
otherwise something funny is going on with the flags
Signed-off-by: Bor Grošelj Simić <bgs@turminal.net>
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/type_store.c b/src/type_store.c
@@ -1117,6 +1117,7 @@ type_store_lookup_alias(struct type_store *store,
ret = alias;
}
}
+ assert(ret != NULL);
return ret;
}