Module: wine Branch: master Commit: 543909958f3efcea3f356c246b82b8e69faef3dd URL: http://source.winehq.org/git/wine.git/?a=commit;h=543909958f3efcea3f356c246b...
Author: Alexandre Julliard julliard@winehq.org Date: Sun Feb 17 20:26:13 2008 +0100
comctl32: Remove unnecessary \n in trace.
---
dlls/comctl32/listview.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 16bf38a..006991f 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -611,7 +611,7 @@ static const char* debugnmlistview(const NMLISTVIEW *plvnm) { if (!plvnm) return "(null)"; return wine_dbg_sprintf("iItem=%d, iSubItem=%d, uNewState=0x%x," - " uOldState=0x%x, uChanged=0x%x, ptAction=%s, lParam=%ld\n", + " uOldState=0x%x, uChanged=0x%x, ptAction=%s, lParam=%ld", plvnm->iItem, plvnm->iSubItem, plvnm->uNewState, plvnm->uOldState, plvnm->uChanged, wine_dbgstr_point(&plvnm->ptAction), plvnm->lParam); }