Module: wine Branch: master Commit: 003fb4b139e67a57e4bcb2511545ee9aeeef2531 URL: http://source.winehq.org/git/wine.git/?a=commit;h=003fb4b139e67a57e4bcb25115...
Author: Francois Gouget fgouget@free.fr Date: Sat Apr 23 07:48:11 2016 +0200
cmd: Fix a spelling erro in a TRACE() message.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
programs/cmd/builtins.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c index a444330..49c366a 100644 --- a/programs/cmd/builtins.c +++ b/programs/cmd/builtins.c @@ -3938,7 +3938,7 @@ static int WCMD_handleExpression(WCHAR **expr, int *ret, int depth) case ',': { int prevresult = -1; - WINE_TRACE("Found expression delimiter - reducing exising stacks\n"); + WINE_TRACE("Found expression delimiter - reducing existing stacks\n"); while (!rc && opstackhead) { rc = WCMD_reduce(&opstackhead, &varstackhead); }