From 87c3f4bc8d8e0ce76102e7ee0fd9ba08b26d8dcf Mon Sep 17 00:00:00 2001 From: theonlymirage Date: Sun, 14 Oct 2018 04:48:50 +0000 Subject: [PATCH] @HOTANGLES fix code in trim (symbol "tab") git-svn-id: svn://kolibrios.org@7461 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/other/ha/HOTANGLES.ASM | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/other/ha/HOTANGLES.ASM b/programs/other/ha/HOTANGLES.ASM index 8854f2c28e..c7b1d5fa45 100644 --- a/programs/other/ha/HOTANGLES.ASM +++ b/programs/other/ha/HOTANGLES.ASM @@ -390,9 +390,9 @@ trim: ;esi - ;push esi mov byte[esi], 0 dec esi - cmp byte[esi], 8 + cmp byte[esi], 9 ;tab je trim - cmp byte[esi], 32 + cmp byte[esi], 32 ;space je trim inc esi ;pop esi