Fix MSVC warning.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15747 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2006-11-05 12:22:05 +00:00
parent 7a0f75710d
commit 95b150fee5

View File

@ -325,7 +325,7 @@ MathAtom createInsetMath(docstring const & s)
case 'W':
case 'H':
case 'L':
spacing_code = s[i];
spacing_code = static_cast<char>(s[i]);
++i;
break;
}