Skip to content

Commit 45426c4

Browse files
Fix assembly cmdlet
1 parent 5df656b commit 45426c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmdlets/data/assembly.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ l address <bytes> - show disassembly listing
4343
const mask = ptr(1).not();
4444
cursor = cursor.and(mask);
4545
}
46-
let buffer = new Uint8Array(0);
46+
let buffer: Uint8Array = new Uint8Array(0);
4747

4848
try {
4949
const minLength = this.maxInstructionLen();

0 commit comments

Comments
 (0)