aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-24 15:03:29 -0700
committerChris Robinson <[email protected]>2011-06-24 15:03:29 -0700
commit913c70557d562695cd7cd96fce49ab7a2818713a (patch)
treee1dbd4294fb2b711bdf19c2c19e0414da5c42d01 /Alc/hrtf.c
parente8b785677da38ba9569fed75ab4af6048bb7f0eb (diff)
Fix formatter for size_t
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r--Alc/hrtf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/hrtf.c b/Alc/hrtf.c
index 87f98b9a..43cfb80b 100644
--- a/Alc/hrtf.c
+++ b/Alc/hrtf.c
@@ -104,7 +104,7 @@ void InitHrtf(void)
newdata.delays[i] = val;
if(val > maxDelay)
{
- AL_PRINT("Invalid delay at idx %d: %u (max: %u), in %s\n", i, val, maxDelay, str);
+ AL_PRINT("Invalid delay at idx %zu: %u (max: %u), in %s\n", i, val, maxDelay, str);
failed = AL_TRUE;
}
}