From cd804b45cb73b756e8e5f1f76e26fbd793ff65a2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Thu, 4 Apr 2013 19:41:50 +0000 Subject: [PATCH] [ROSAPPS] Fix the remaining 'lenght' --> 'length' misspelling. svn path=/trunk/; revision=58676 --- .../applications/sysutils/utils/pice/module/disassembler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rosapps/applications/sysutils/utils/pice/module/disassembler.c b/rosapps/applications/sysutils/utils/pice/module/disassembler.c index df136c38187..4c20792d970 100644 --- a/rosapps/applications/sysutils/utils/pice/module/disassembler.c +++ b/rosapps/applications/sysutils/utils/pice/module/disassembler.c @@ -184,7 +184,7 @@ UCHAR Disassembler( TDisassembler *pDis ) ULONG dwULONG; // Temporary ULONG storage USHORT wUSHORT; // Temporary USHORT storage UCHAR bUCHAR; // Temporary UCHAR storage - UCHAR bInstrLen; // Current instruction lenght in UCHARs + UCHAR bInstrLen; // Current instruction length in UCHARs UCHAR bOpcode; // Current opcode that is being disassembled UCHAR bSegOverride; // 0 default segment. >0, segment index UCHAR bMod=0; // Mod field of the instruction @@ -198,7 +198,7 @@ UCHAR Disassembler( TDisassembler *pDis ) UCHAR bBase; // Base field of the s-i-b UCHAR LPSTR pSymbolName; // used to symbolic name of value - bInstrLen = 0; // Reset instruction lenght to zero + bInstrLen = 0; // Reset instruction length to zero bSegOverride = 0; // Set default segment (no override) nPos = 0; // Reset printing position sPtr = NULL; // Points to no message by default -- 2.17.1