diff options
Diffstat (limited to 'tdeabc/tests/testaddressfmt.cpp')
-rw-r--r-- | tdeabc/tests/testaddressfmt.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeabc/tests/testaddressfmt.cpp b/tdeabc/tests/testaddressfmt.cpp index 79545f6f9..bf5347f4e 100644 --- a/tdeabc/tests/testaddressfmt.cpp +++ b/tdeabc/tests/testaddressfmt.cpp @@ -51,13 +51,13 @@ int main(int argc,char **argv) d.setCountry (""); tqDebug( "-------------------------------------\nShould have german address formatting, local country formatting\n" ); - tqDebug( a.formattedAddress("Jim Knopf").latin1() ); + tqDebug( "%s", a.formattedAddress("Jim Knopf").latin1() ); tqDebug( "-------------------------------------\nShould have US address formatting, local country formatting\n" ); - tqDebug( b.formattedAddress("Huck Finn").latin1() ); + tqDebug( "%s", b.formattedAddress("Huck Finn").latin1() ); tqDebug( "-------------------------------------\nShould have german address formatting, local country formatting\n" ); - tqDebug( c.formattedAddress("Jim Knopf").latin1() ); + tqDebug( "%s", c.formattedAddress("Jim Knopf").latin1() ); tqDebug( "-------------------------------------\nShould have local address formatting, local country formatting\n" ); - tqDebug( d.formattedAddress("Jim Knopf").latin1() ); + tqDebug( "%s", d.formattedAddress("Jim Knopf").latin1() ); } |