Skip to content

Commit

Permalink
Fixed another missing %zu
Browse files Browse the repository at this point in the history
  • Loading branch information
azonenberg committed Nov 14, 2024
1 parent 88d8e8b commit 9f089dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ngscopeclient/TextureManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ void TextureManager::LoadTexture(
}
int bytesPerComponent = 1;
size_t bytesPerPixel = 4*bytesPerComponent;
LogTrace("Image is %d x %d pixels, RGBA8888\n", width, height);
LogTrace("Image is %zu x %zu pixels, RGBA8888\n", width, height);
VkDeviceSize size = width * height * bytesPerPixel;

//Allocate temporary staging buffer
Expand Down

0 comments on commit 9f089dd

Please sign in to comment.