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 *.o
*.a *.a
# python build files
src/pynorm.egg-info
# build java files # build java files
*.class *.class
@ -307,5 +310,5 @@ Packages.props
#Local Log Files #Local Log Files
log*.txt log*.txt
.NET Extension Library Files #.NET Extension Library Files
/src/dotnet/lib /src/dotnet/lib

View File

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