Francois Gouget : msvcrt: Fix the spelling of a comment.
Module: wine Branch: master Commit: 8f51e6bd47595fb4df53e06cdcf5e0fb2612ed58 URL: https://gitlab.winehq.org/wine/wine/-/commit/8f51e6bd47595fb4df53e06cdcf5e0f... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Sep 5 09:56:02 2022 +0200 msvcrt: Fix the spelling of a comment. --- dlls/msvcrt/undname.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msvcrt/undname.c b/dlls/msvcrt/undname.c index 8eb3a12057f..eb95da98435 100644 --- a/dlls/msvcrt/undname.c +++ b/dlls/msvcrt/undname.c @@ -1509,7 +1509,7 @@ static BOOL symbol_demangle(struct parsed_symbol* sym) case '9': function_name = "`vcall'"; break; case 'A': function_name = "`typeof'"; break; case 'B': function_name = "`local static guard'"; break; - case 'C': sym->result = (char*)"`string'"; /* string literal: followed by string encoding (native nevers undecode it) */ + case 'C': sym->result = (char*)"`string'"; /* string literal: followed by string encoding (native never undecode it) */ /* FIXME: should unmangle the whole string for error reporting */ if (*sym->current && sym->current[strlen(sym->current) - 1] == '@') ret = TRUE; goto done;
participants (1)
-
Alexandre Julliard