Commit d78ec904 authored by Geoff Simmons's avatar Geoff Simmons

minor and probably irrelevant bugfix (logical or rather than bitwise or)

parent 10563cf5
...@@ -145,8 +145,8 @@ RDR_Stats(void) ...@@ -145,8 +145,8 @@ RDR_Stats(void)
int int
RDR_Depleted(void) RDR_Depleted(void)
{ {
return (rdr_tx_free < tx_thresh) | (rdr_rec_free < rec_thresh) return (rdr_tx_free < tx_thresh) || (rdr_rec_free < rec_thresh)
| (rdr_chunk_free < chunk_thresh); || (rdr_chunk_free < chunk_thresh);
} }
static inline void static inline void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment