Fixed compiler warning (compiled with IAR)
This commit is contained in:
@@ -52,7 +52,15 @@
|
|||||||
unsigned FIFO_Count(
|
unsigned FIFO_Count(
|
||||||
FIFO_BUFFER const *b)
|
FIFO_BUFFER const *b)
|
||||||
{
|
{
|
||||||
return (b ? (b->head - b->tail) : 0);
|
unsigned head, tail; /* used to avoid volatile decision */
|
||||||
|
|
||||||
|
if (b) {
|
||||||
|
head = b->head;
|
||||||
|
tail = b->tail;
|
||||||
|
return head-tail;
|
||||||
|
} else {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|||||||
Reference in New Issue
Block a user