Module: wine Branch: master Commit: 5bd74d0e58ef29da225d02a3cd0eca0da426229d URL: https://gitlab.winehq.org/wine/wine/-/commit/5bd74d0e58ef29da225d02a3cd0eca0...
Author: Francois Gouget fgouget@free.fr Date: Thu Oct 20 17:35:12 2022 +0200
dbghelp: Fix the trailing linefeed of a WARN() message.
---
dlls/dbghelp/dwarf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index 4671174d3bb..f8b3f8d717c 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -1953,7 +1953,7 @@ static void dwarf2_parse_variable(dwarf2_subprogram_t* subpgm, loc.offset += subpgm->ctx->module_ctx->load_offset; if (subpgm->top_func) { - if (ext.u.uvalue) WARN("unexpected global inside a functionn"); + if (ext.u.uvalue) WARN("unexpected global inside a function\n"); symt_add_func_local(subpgm->ctx->module_ctx->module, subpgm->current_func, DataIsStaticLocal, &loc, subpgm->current_block, param_type, dwarf2_get_cpp_name(di, name.u.string));