diff options
author | Tucker Evans <tucker@tuckerevans.com> | 2020-07-03 00:00:41 -0400 |
---|---|---|
committer | Tucker Evans <tucker@tuckerevans.com> | 2020-07-03 00:00:41 -0400 |
commit | 393af1c6e2e82af6ef44a903923ef0d561595241 (patch) | |
tree | 5e4dbf7e3aa8a9cad3dc93d59dda14474f1df80a | |
parent | 6dcd7d9a196dcd981cc89f6558e225dfc8fb7cc9 (diff) |
Fix output of debug print for double ended queue
-rw-r--r-- | collections/double_ended_queue/double_ended_queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/collections/double_ended_queue/double_ended_queue.c b/collections/double_ended_queue/double_ended_queue.c index 015b90b..f5e9880 100644 --- a/collections/double_ended_queue/double_ended_queue.c +++ b/collections/double_ended_queue/double_ended_queue.c @@ -351,7 +351,7 @@ deq *root; { void **tmp; - fprintf(stderr, "VEC[b: %p, beg: %d, end:%d]:\n\t ", + fprintf(stderr, "DEQ[base: %p, beg: %d, end:%d]:\n\t ", root->base, root->beg, root->end); for (tmp = root->base; tmp < root->base + root->limit; tmp++){ fprintf(stderr, "[%p]", *tmp); |