Skip to content

Commit 27ce1a0

Browse files
committed
Hot Fix - wrong uint8 variable
1 parent 34bc474 commit 27ce1a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FileFormat/ZipArchiveHandler.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ public class Akira.FileFormat.ZipArchiveHandler : GLib.Object {
348348

349349
// Add the actual content of the file
350350
size_t bytes_read;
351-
uint8[64] buffer = new uint8[64];
351+
uint8[] buffer = new uint8[64];
352352
while (data_input_stream.read_all (buffer, out bytes_read)) {
353353
if (bytes_read <= 0) {
354354
break;

0 commit comments

Comments
 (0)