diff options
-rw-r--r-- | starmath/source/types.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/types.cxx b/starmath/source/types.cxx index c86b4164928f..9f02e27876b6 100644 --- a/starmath/source/types.cxx +++ b/starmath/source/types.cxx @@ -41,7 +41,7 @@ sal_Unicode ConvertMathPrivateUseAreaToUnicode( sal_Unicode cChar ) if (IsInPrivateUseArea( cChar )) { DBG_ASSERT( 0, "Error: private use area characters should no longer be in use!" ); - cRes = ''; // just some character that should easily be notice as odd in the context + cRes = (sal_Unicode) '&'; // just some character that should easily be notice as odd in the context } return cRes; } |