summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/server/PostProcessor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/PostProcessor.cpp b/src/server/PostProcessor.cpp
index 5a54d728..3cd05992 100644
--- a/src/server/PostProcessor.cpp
+++ b/src/server/PostProcessor.cpp
@@ -75,7 +75,7 @@ PostProcessor::process()
if (driver) {
Notification note;
const uint32_t read_space = driver->context().event_sink().read_space();
- for (uint32_t i = 0; i <= read_space; i += sizeof(note)) {
+ for (uint32_t i = 0; i < read_space; i += sizeof(note)) {
driver->context().event_sink().read(sizeof(note), &note);
Notification::post_process(note, _engine);
}