From 5939accc84c2a5a07e74be6313208d9ae5a84c1b Mon Sep 17 00:00:00 2001 From: assp1r1n3 Date: Fri, 25 Aug 2017 23:21:24 +0200 Subject: [PATCH] Fix minor typo in re102_section4.1.md --- RE102/re102_section4.1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RE102/re102_section4.1.md b/RE102/re102_section4.1.md index 5681553..a6dea11 100644 --- a/RE102/re102_section4.1.md +++ b/RE102/re102_section4.1.md @@ -74,10 +74,10 @@ So let’s create the pseudo code for this loop: ``` int ebx = 0; -int length = 265 // 0x100 +int length = 256 // 0x100 While (ebx < 256) { - push(i) + push(ebx) ebx++ } ```