You shall fix ze bugs you shall ve happy

This commit is contained in:
Mohamed Ashraf
2026-03-02 16:30:43 +04:00
parent 0803f67f47
commit 3ece2a588d
8 changed files with 97 additions and 21 deletions

View File

@@ -58,7 +58,7 @@ void BufferedOutputStream::write(byteArray b, unsigned int offset, unsigned int
{
for(unsigned int i = 0; i < length; i++ )
{
write( b[offset+i] );
write( static_cast<unsigned int>(b[offset+i]));
}
}
}
@@ -84,4 +84,4 @@ void BufferedOutputStream::write(unsigned int b)
{
flush();
}
}
}