summaryrefslogtreecommitdiff
path: root/basic/source/runtime/runtime.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/runtime.cxx')
-rw-r--r--basic/source/runtime/runtime.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index abd65aa685a8..89fc75f31e8e 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -4268,15 +4268,15 @@ void SbiRuntime::StepSTMNT( sal_uInt32 nOp1, sal_uInt32 nOp2 )
if( !bInError )
{
// (there's a difference here in case of a jump out of a loop)
- sal_uInt16 nExspectedForLevel = static_cast<sal_uInt16>( nOp2 / 0x100 );
+ sal_uInt16 nExpectedForLevel = static_cast<sal_uInt16>( nOp2 / 0x100 );
if( !pGosubStk.empty() )
{
- nExspectedForLevel = nExspectedForLevel + pGosubStk.back().nStartForLvl;
+ nExpectedForLevel = nExpectedForLevel + pGosubStk.back().nStartForLvl;
}
// if the actual for-level is too small it'd jump out
// of a loop -> corrected
- while( nForLvl > nExspectedForLevel )
+ while( nForLvl > nExpectedForLevel )
{
PopFor();
}