Skip to content

Commit

Permalink
Hot Fix - wrong uint8 variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Alecaddd committed Aug 3, 2020
1 parent 34bc474 commit 27ce1a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FileFormat/ZipArchiveHandler.vala
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ public class Akira.FileFormat.ZipArchiveHandler : GLib.Object {

// Add the actual content of the file
size_t bytes_read;
uint8[64] buffer = new uint8[64];
uint8[] buffer = new uint8[64];
while (data_input_stream.read_all (buffer, out bytes_read)) {
if (bytes_read <= 0) {
break;
Expand Down

0 comments on commit 27ce1a0

Please sign in to comment.