fix npc compilation error

pull/95/head
Jeffery Weston 2025-07-23 13:32:38 -04:00
parent f3a60510ff
commit 823e3e8c88
2 changed files with 6 additions and 3 deletions

5
.gitignore vendored
View File

@ -18,6 +18,9 @@ norp/makefiles/norp
*.o
*.a
# python build files
src/pynorm.egg-info
# build java files
*.class
@ -307,5 +310,5 @@ Packages.props
#Local Log Files
log*.txt
.NET Extension Library Files
#.NET Extension Library Files
/src/dotnet/lib

View File

@ -1011,7 +1011,7 @@ bool NormPrecodeApp::Decode()
if (useBuffering)
{
// Read in a full interleaver block
size_t bytesToRead;
unsigned int bytesToRead;
if (interleaverBlockId != lastInterleaverBlockId)
bytesToRead = interleaverBytes;
else