Fixed some more overflowing string traces.
diff --git a/dlls/user/text.c b/dlls/user/text.c
index a11f1d2..05962f3 100644
--- a/dlls/user/text.c
+++ b/dlls/user/text.c
@@ -747,7 +747,7 @@
DWORD WINAPI GetTabbedTextExtentA( HDC hdc, LPCSTR lpstr, INT count,
INT cTabStops, const INT *lpTabPos )
{
- TRACE("%04x '%.*s' %d\n", hdc, count, lpstr, count );
+ TRACE("%04x %s %d\n", hdc, debugstr_an(lpstr,count), count );
return TEXT_TabbedTextOut( hdc, 0, 0, lpstr, count, cTabStops,
NULL, lpTabPos, 0, FALSE );
}