Skip to content
Snippets Groups Projects
Commit 04468793 authored by Niels Möller's avatar Niels Möller
Browse files

Fixed typo in create()

Rev: lib/modules/ADT.pmod/queue.pike:1.4
parent dad61dc1
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ array l; ...@@ -9,7 +9,7 @@ array l;
int head; int head;
int tail; int tail;
void create(mixed ..args) void create(mixed ...args)
{ {
l = args + allocate(QUEUE_SIZE); l = args + allocate(QUEUE_SIZE);
head = sizeof(args); head = sizeof(args);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment