aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 9e9f837..c5bcb04 100644
--- a/main.c
+++ b/main.c
@@ -26,7 +26,7 @@ int main(int argc, char* argv[]) {
current_bucket = current_bucket->next;
}
}
- if (!current_bucket) {
+ if (!current_bucket) { // TODO: unify this, with attach_set
bucket* b = new_bucket(s, j);
b->prev = head;
if (head) {