summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.c b/main.c
index dd072e2..42606c2 100644
--- a/main.c
+++ b/main.c
@@ -21,7 +21,10 @@ int main(int argc, char *argv[])
p = list;
while (xs_list_iter(&p, &fn)) {
- printf("%s\n", fn);
+ xs *obj;
+
+ obj = dequeue(&snac, fn);
+ printf("%s\n", xs_dict_get(obj, "actor"));
}
}