commit 188b16b7160324e8f9ea5e85687c526bd6700725
parent 4a3ed99fe55e564b696073779454e679170fb377
Author: Eyal Sawady <ecs@d2evs.net>
Date: Tue, 15 Jun 2021 03:18:40 +0000
Fix type_storage_unparse(STORAGE_NULL)
Signed-off-by: Eyal Sawady <ecs@d2evs.net>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/types.c b/src/types.c
@@ -124,7 +124,7 @@ type_storage_unparse(enum type_storage storage)
case STORAGE_POINTER:
return "pointer";
case STORAGE_NULL:
- return "rune";
+ return "null";
case STORAGE_RUNE:
return "rune";
case STORAGE_SIZE: