diff options
author | Alexander von Gluck IV <kallisti5@unixzen.com> | 2014-12-09 21:30:32 +0000 |
---|---|---|
committer | Alexander von Gluck IV <kallisti5@unixzen.com> | 2014-12-10 14:01:01 +0000 |
commit | 03e237e9f2edb99120fb4bdab2c7bfd211848dc0 (patch) | |
tree | 11d97091de71608913af82d88806071d9c917197 /src/gallium/targets | |
parent | 63d3f621e3291cbc3be92dff9fb901ddcf0a9f0f (diff) | |
download | mesa-03e237e9f2edb99120fb4bdab2c7bfd211848dc0.tar.gz mesa-03e237e9f2edb99120fb4bdab2c7bfd211848dc0.tar.bz2 mesa-03e237e9f2edb99120fb4bdab2c7bfd211848dc0.zip |
gallium/target: Haiku softpipe
* Use print macro to fix warning on 64-bit systems
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp b/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp index 0ae9e5260a1..77cafd4b935 100644 --- a/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp +++ b/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp @@ -355,7 +355,7 @@ SoftwareRenderer::_AllocateBitmap() return; } - TRACE("%s: New bitmap size: %ld x %ld\n", __func__, + TRACE("%s: New bitmap size: %" B_PRId32 " x %" B_PRId32 "\n", __func__, fBitmap->Bounds().IntegerWidth(), fBitmap->Bounds().IntegerHeight()); fContextObj->ResizeViewport(fWidth, fHeight); |