Fixed build for platforms which use the default value for QUEUEBUF_NUM.

This commit is contained in:
oliverschmidt 2010-10-12 19:51:28 +00:00
parent af3f4ae679
commit 2f89e69ff7
3 changed files with 10 additions and 10 deletions

View file

@ -33,7 +33,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: queuebuf.c,v 1.3 2010/10/04 20:26:01 adamdunkels Exp $
* $Id: queuebuf.c,v 1.4 2010/10/12 19:51:28 oliverschmidt Exp $
*/
/**
@ -47,12 +47,6 @@
#include <string.h> /* for memcpy() */
#ifdef QUEUEBUF_CONF_NUM
#define QUEUEBUF_NUM QUEUEBUF_CONF_NUM
#else
#define QUEUEBUF_NUM 8
#endif
#ifdef QUEUEBUF_CONF_REF_NUM
#define QUEUEBUF_REF_NUM QUEUEBUF_CONF_REF_NUM
#else