Skip to content
Snippets Groups Projects
Commit 96267853 authored by Martin Nilsson's avatar Martin Nilsson
Browse files

Fixed warning.

Rev: lib/modules/Thread.pmod:1.21
parent 5982e6d5
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,7 @@ class Queue { ...@@ -86,7 +86,7 @@ class Queue {
inherit Condition : r_cond; inherit Condition : r_cond;
inherit Mutex : lock; inherit Mutex : lock;
mixed *buffer=allocate(16); array buffer=allocate(16);
int r_ptr, w_ptr; int r_ptr, w_ptr;
int size() { return w_ptr - r_ptr; } int size() { return w_ptr - r_ptr; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment