Removed qualifier to fix compiler warning.

This commit is contained in:
skarg
2008-12-05 19:06:47 +00:00
parent 33b1eef709
commit 290c208634
+1 -1
View File
@@ -47,7 +47,7 @@
* ALGORITHM: none * ALGORITHM: none
* NOTES: none * NOTES: none
*****************************************************************************/ *****************************************************************************/
static volatile unsigned FIFO_Count ( static unsigned FIFO_Count (
FIFO_BUFFER const *b) FIFO_BUFFER const *b)
{ {
return (b ? (b->head - b->tail) : 0); return (b ? (b->head - b->tail) : 0);