diff options
author | Chris Robinson <[email protected]> | 2017-04-19 15:17:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-04-19 15:17:55 -0700 |
commit | fbb5295f13711f978a1ad5a8abfc6c6d3970df0c (patch) | |
tree | ac0ebf5ffb544b5d4a752445bae847970e12fd48 /Alc/hrtf.c | |
parent | 0407285c534392a9b1d96d4f57de26ff2be9671c (diff) |
Fix a mixed-sign-comparison warning on MSVC
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r-- | Alc/hrtf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -356,7 +356,7 @@ static struct Hrtf *LoadHrtf00(const ALubyte *data, size_t datalen, const char * if(failed) return NULL; - if(datalen < evCount*2) + if(datalen < evCount*2u) { ERR("Unexpected end of %s data (req %d, rem "SZFMT")\n", filename, evCount*2, datalen); return NULL; |