-Werror=misleading-indentation (GCC 6)

Change-Id: Ia633b859df94ede325469ec8a20e7383d2a178d4
This commit is contained in:
Stephan Bergmann 2016-01-13 17:20:28 +01:00
parent e5d393cf0e
commit a20f9388f1

View File

@ -1196,7 +1196,8 @@ Lbl_OpIsDouble:
aL.nDouble *= aR.nDouble; break;
case SbxDIV:
if( !aR.nDouble ) SetError( ERRCODE_SBX_ZERODIV );
else aL.nDouble /= aR.nDouble; break;
else aL.nDouble /= aR.nDouble;
break;
case SbxPLUS:
aL.nDouble += aR.nDouble; break;
case SbxMINUS: