Cleanup misc. whitespace

This commit is contained in:
michaelangel007 2014-08-25 15:33:53 -07:00
parent 712c726304
commit 936553ab7e

View File

@ -828,7 +828,7 @@ char FormatCharTxtAsci ( const BYTE b, bool * pWasAsci_ )
{
if (pWasAsci_)
{
*pWasAsci_ = true;
*pWasAsci_ = true;
}
}
return c;
@ -845,7 +845,7 @@ char FormatCharTxtCtrl ( const BYTE b, bool * pWasCtrl_ )
{
if (pWasCtrl_)
{
*pWasCtrl_ = true;
*pWasCtrl_ = true;
}
c = b + '@'; // map ctrl chars to visible
}