From 19da9bd10d94bbda211c6395aef34fe97daabebc Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Thu, 19 Nov 2020 17:09:28 -0800 Subject: [PATCH] clover: Fix typo in comment. Signed-off-by: Vinson Lee Reviewed-by: Karol Herbst Part-of: --- src/gallium/frontends/clover/core/queue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/frontends/clover/core/queue.cpp b/src/gallium/frontends/clover/core/queue.cpp index 33a760d6b0a..0b14706c4d2 100644 --- a/src/gallium/frontends/clover/core/queue.cpp +++ b/src/gallium/frontends/clover/core/queue.cpp @@ -138,7 +138,7 @@ command_queue::sequence(hard_event &ev) { // Arbitrary threshold. // The CTS tends to run a lot of subtests without flushing with the image - // tests, so flush regulary to prevent stack overflows. + // tests, so flush regularly to prevent stack overflows. if (queued_events.size() > 1000) flush_unlocked(); }