Module: wine Branch: master Commit: 28e06e3fb08c3ada75f4acf0eca83d013323089a URL: http://source.winehq.org/git/wine.git/?a=commit;h=28e06e3fb08c3ada75f4acf0ec...
Author: Francois Gouget fgouget@free.fr Date: Mon Jul 23 18:40:29 2012 +0200
d3dcompiler_43: Add a trailing '\n' to a couple of Wine traces.
---
dlls/d3dcompiler_43/utils.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/d3dcompiler_43/utils.c b/dlls/d3dcompiler_43/utils.c index 2072a66..915871d 100644 --- a/dlls/d3dcompiler_43/utils.c +++ b/dlls/d3dcompiler_43/utils.c @@ -1442,7 +1442,7 @@ struct hlsl_ir_node *make_assignment(struct hlsl_ir_node *left, enum parse_assig type = left->data_type; else { - FIXME("Assignments with writemasks not supported yet."); + FIXME("Assignments with writemasks not supported yet.\n"); type = NULL; } assign->node.type = HLSL_IR_ASSIGNMENT; @@ -1478,7 +1478,7 @@ struct hlsl_ir_node *make_assignment(struct hlsl_ir_node *left, enum parse_assig converted_rhs = implicit_conversion(rhs, type, &rhs->loc); if (!converted_rhs) { - ERR("Couldn't implicitly convert expression to %s.", debug_hlsl_type(type)); + ERR("Couldn't implicitly convert expression to %s.\n", debug_hlsl_type(type)); free_instr(lhs); free_instr(rhs); return NULL;