aboutsummaryrefslogtreecommitdiff
path: root/collections
diff options
context:
space:
mode:
Diffstat (limited to 'collections')
-rw-r--r--collections/double_ended_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/collections/double_ended_queue.c b/collections/double_ended_queue.c
index ac9c131..dac22b6 100644
--- a/collections/double_ended_queue.c
+++ b/collections/double_ended_queue.c
@@ -7,7 +7,7 @@
#define START_SIZE 64;
-struct double_ended_queeu {
+struct double_ended_queue {
void **base, **end, **beg;
int i, limit;
};