diff options
| author | Mikhail Romanko <me@blankhex.com> | 2025-08-26 10:48:35 +0300 |
|---|---|---|
| committer | Mikhail Romanko <me@blankhex.com> | 2025-08-26 10:48:35 +0300 |
| commit | c716c71542a9ee875a7cfb632020b78aea626f70 (patch) | |
| tree | 668d9dbd0a2bb77323480b85e144d98e2cd47fa9 | |
| parent | 2843ecd3f763cb18b439e5fd8736ee1bb428f94f (diff) | |
| download | bhlib-c716c71542a9ee875a7cfb632020b78aea626f70.tar.gz | |
Remove extra whitespace and variable in TestBitmap
| -rw-r--r-- | test/src/TestBitmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/TestBitmap.c b/test/src/TestBitmap.c index bda74cd..cfeee7f 100644 --- a/test/src/TestBitmap.c +++ b/test/src/TestBitmap.c @@ -6,7 +6,7 @@ BH_UNIT_TEST(RoundTrip) { - size_t i, flag, format; + size_t i, format; uint16_t data[][4] = { @@ -55,7 +55,7 @@ BH_UNIT_TEST(RoundTrip) data[i][3]); BH_BitmapConvertRow(&source.data, BH_BITMAP_RGBA16161616, NULL, &temp, formats[format], NULL, 1); - BH_BitmapConvertRow(&temp, formats[format], NULL, &destination.data, + BH_BitmapConvertRow(&temp, formats[format], NULL, &destination.data, BH_BITMAP_RGBA16161616, NULL, 1); BH_VERIFY(source.data.rgba.r == destination.data.rgba.r); |
