summaryrefslogtreecommitdiffstats
path: root/queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'queue.h')
-rw-r--r--queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/queue.h b/queue.h
index b660c44f..d119eab7 100644
--- a/queue.h
+++ b/queue.h
@@ -27,8 +27,8 @@
/* queue types */
typedef enum {
- QUEUETYPE_FIXED_ARRAY,/* a simple queue made out of a fixed (initially malloced) array fast but memoryhog */
- QUEUETYPE_LINKEDLIST,/* linked list used as buffer, lower fixed memory overhead but slower */
+ QUEUETYPE_FIXED_ARRAY = 0,/* a simple queue made out of a fixed (initially malloced) array fast but memoryhog */
+ QUEUETYPE_LINKEDLIST = 1 /* linked list used as buffer, lower fixed memory overhead but slower */
} queueType_t;
/* list member definition for linked list types of queues: */