summaryrefslogtreecommitdiff
path: root/src/02/04/list.c
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-08-03 15:57:46 -0600
committermo khan <mo.khan@gmail.com>2020-08-03 15:57:46 -0600
commit1a22ef17fa7056b2be7fecd3eecad2a5a36c780d (patch)
tree92ad763a00a3abee2d9bf86a9f76d83f5a2301b0 /src/02/04/list.c
parent48c2554c49929c31168ec4448e9d20154422dd84 (diff)
Run clang formatter
Diffstat (limited to 'src/02/04/list.c')
-rw-r--r--src/02/04/list.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/02/04/list.c b/src/02/04/list.c
index 99f8c83..cfc3b2c 100644
--- a/src/02/04/list.c
+++ b/src/02/04/list.c
@@ -48,7 +48,6 @@ void list_inspect(Node *self, Printer printer) {
printf("[");
while (self) {
printer(self->data);
- /*printf(" %p ", self->data);*/
self = self->next;
}
printf("]\n");