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

@@ -166,7 +166,7 @@ bool oeLnxAppDatabase::read(const char *label, void *entry, int wordsize) {
*((unsigned short *)entry) = (unsigned short)data;
break;
case 4:
*((unsigned int *)entry) = (unsigned int)data;
*((uint32_t *)entry) = (uint32_t)data;
break;
default:
mprintf((0, "Unable to read key %s, unsupported size", label));