Mesa (main): dzn: add space before += operator

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Apr 21 10:59:09 UTC 2022


Module: Mesa
Branch: main
Commit: f854e6ec9bc9e1af6689072713baf6a4238c9118
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f854e6ec9bc9e1af6689072713baf6a4238c9118

Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
Date:   Tue Apr 12 16:55:03 2022 +0200

dzn: add space before += operator

Acked-by: Boris Brezillon <boris.brezillon at collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16052>

---

 src/microsoft/vulkan/dzn_cmd_buffer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microsoft/vulkan/dzn_cmd_buffer.c b/src/microsoft/vulkan/dzn_cmd_buffer.c
index 96516ef66eb..a8ee66f66dc 100644
--- a/src/microsoft/vulkan/dzn_cmd_buffer.c
+++ b/src/microsoft/vulkan/dzn_cmd_buffer.c
@@ -564,7 +564,7 @@ dzn_cmd_buffer_collect_queries(struct dzn_cmd_buffer *cmdbuf,
       uint32_t step = DZN_QUERY_REFS_SECTION_SIZE / sizeof(uint64_t);
       uint32_t count = end - start;
 
-      for (unsigned i = 0; i < count; i+= step) {
+      for (unsigned i = 0; i < count; i += step) {
          uint32_t sub_count = MIN2(step, count - i);
 
          ID3D12GraphicsCommandList1_CopyBufferRegion(cmdbuf->cmdlist,



More information about the mesa-commit mailing list