Unit tests update

This commit is contained in:
Markus Gans 2018-03-21 00:16:55 +01:00
parent 8dd23d1673
commit 9fe0bc3241
3 changed files with 3 additions and 3 deletions

View File

@ -225,7 +225,7 @@ void debug (FApplication& TermApp)
if ( ab_s.isEmpty() )
tcapString ("| The answerback String", ab_s);
if ( ab_s.isEmpty() )
if ( sec_da.isEmpty() )
tcapString ("| The SecDA String", sec_da);
std::cout << "`------------------- debug -------------------\r\n";

View File

@ -226,7 +226,7 @@ class FString
wchar_t front() const;
wchar_t back() const;
FString& sprintf (const FString&, ...);
FString& sprintf (const FString, ...);
FString& sprintf (const wchar_t[], ...);
FString& sprintf (const char[], ...)
#if defined(__clang__)

View File

@ -735,7 +735,7 @@ uInt FString::getUTF8length() const
}
//----------------------------------------------------------------------
FString& FString::sprintf (const FString& format, ...)
FString& FString::sprintf (const FString format, ...)
{
static const int BUFSIZE = 4096;
wchar_t buffer[BUFSIZE];