summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 871c1131..9133f024 100644
--- a/lib.c
+++ b/lib.c
@@ -286,9 +286,9 @@ seq_info_t seq_info(val obj)
type_t to = type(obj);
ret.obj = obj;
+ ret.type = to;
if (to != COBJ) {
- ret.type = to;
ret.kind = seq_kind_tab[to];
return ret;
} else {