From e6eaea7591f546a97cbfedbbb2ec62fc47a50a02 Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Thu, 3 Oct 2013 21:43:36 -0700 Subject: [PATCH] Fixed GCC warning. --- src/renderer_d3d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer_d3d.h b/src/renderer_d3d.h index c197a338..b10f4c7c 100644 --- a/src/renderer_d3d.h +++ b/src/renderer_d3d.h @@ -74,7 +74,7 @@ namespace bgfx if (NULL != _ptr) \ { \ ULONG count = _ptr->Release(); \ - _check(_expected == count, "RefCount is %d (expected %d).", count, _expected); \ + _check(_expected == count, "RefCount is %d (expected %d).", count, _expected); BX_UNUSED(count); \ _ptr = NULL; \ } \ } while (0)