diff options
| author | Tucker Evans <tucker@tuckerevans.com> | 2020-05-25 00:01:22 -0400 |
|---|---|---|
| committer | Tucker Evans <tucker@tuckerevans.com> | 2020-05-25 00:01:22 -0400 |
| commit | 7b4a46a736f47222937ba875c162591d50b08d72 (patch) | |
| tree | 72a4e799e2dda055833f7fa8b5a75fb1291117de /collections | |
| parent | 25395399f6a2822042a445fd6c812566d36dc3f9 (diff) | |
Fix typo in struct name.
Diffstat (limited to 'collections')
| -rw-r--r-- | collections/double_ended_queue.c | 2 |
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; }; |
