Removed qualifier to fix compiler warning.
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user