Replace "unsigned int" with "uint32_t"

This commit is contained in:
GravisZro
2024-05-23 22:51:16 -04:00
parent 9c039e6d2c
commit 2147cfa68b
133 changed files with 1209 additions and 1209 deletions

View File

@@ -23,7 +23,7 @@
#include <assert.h>
#include "Aencode.h"
typedef unsigned int uint32;
typedef uint32_t uint32;
typedef signed int sint32;
typedef unsigned short uint16;
typedef signed short sint16;
@@ -877,7 +877,7 @@ sint32 calc_bits(Encoder &enc, sint32 val) {
eax = ~minValue;
}
if (maxValue > 0 && ((unsigned int)(eax) < (unsigned int)(maxValue))) {
if (maxValue > 0 && ((uint32_t)(eax) < (uint32_t)(maxValue))) {
eax = maxValue;
}