Module: wine Branch: master Commit: de006dbcf995661d4df4733f09c8f3f7618c8bb8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=de006dbcf995661d4df4733f09...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Mon Feb 22 21:37:20 2010 +0100
wined3d: Escape shader comments.
---
dlls/wined3d/shader.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wined3d/shader.c b/dlls/wined3d/shader.c index a3b4ddc..06c49ab 100644 --- a/dlls/wined3d/shader.c +++ b/dlls/wined3d/shader.c @@ -1231,7 +1231,7 @@ static void shader_trace_init(const struct wined3d_shader_frontend *fe, void *fe fe->shader_read_comment(&ptr, &comment, &comment_size); if (comment) { - TRACE("//%s\n", comment); + TRACE("// %s\n", debugstr_an(comment, comment_size)); continue; }