Module: wine Branch: master Commit: 0c9ee6663f650ffe6d071292d67421dc383c6f1c URL: http://source.winehq.org/git/wine.git/?a=commit;h=0c9ee6663f650ffe6d071292d6...
Author: Francois Gouget fgouget@free.fr Date: Wed Sep 19 20:50:13 2012 +0200
d3dcompiler_43: Remove an unwanted trailing '\n' in debug_dump_instr().
---
dlls/d3dcompiler_43/utils.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3dcompiler_43/utils.c b/dlls/d3dcompiler_43/utils.c index e0cac23..84443ae 100644 --- a/dlls/d3dcompiler_43/utils.c +++ b/dlls/d3dcompiler_43/utils.c @@ -2161,7 +2161,7 @@ static void debug_dump_instr(const struct hlsl_ir_node *instr) debug_dump_ir_if(if_from_node(instr)); break; default: - TRACE("No dump function for %s\n", debug_node_type(instr->type)); + TRACE("<No dump function for %s>", debug_node_type(instr->type)); } }