Fix typo "sucessfully" -> "successfully"

Change-Id: I01c85e4d3853c44fa05acc3019bc35c56c4f655e
This commit is contained in:
Julien Nabet
2013-02-23 15:42:54 +01:00
parent fe86d0ca5d
commit 66e5cbc55a
10 changed files with 14 additions and 14 deletions

View File

@@ -521,7 +521,7 @@ bool executePostgresCommand( const rtl::OString & cmd, struct CommandData *data
rtl::OStringBuffer buf( 128 );
buf.append( "executed command '" );
buf.append( cmd.getStr() );
buf.append( "' sucessfully (" );
buf.append( "' successfully (" );
buf.append( *( data->pMultipleResultUpdateCount ) );
buf.append( ")" );
buf.append( ", duration=" );
@@ -672,7 +672,7 @@ bool executePostgresCommand( const rtl::OString & cmd, struct CommandData *data
rtl::OStringBuffer buf( 128 );
buf.append( RTL_CONSTASCII_STRINGPARAM("executed query '") );
buf.append( cmd );
buf.append( RTL_CONSTASCII_STRINGPARAM("' sucessfully") );
buf.append( RTL_CONSTASCII_STRINGPARAM("' successfully") );
buf.append( RTL_CONSTASCII_STRINGPARAM(", duration=") );
buf.append( duration );
buf.append( RTL_CONSTASCII_STRINGPARAM("ms, returnedRows=") );