Module: wine Branch: master Commit: 4bd398120424a9e84f6defaa4bf743586999f809 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4bd398120424a9e84f6defaa4b...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Tue May 21 22:53:46 2013 +0200
vbscript: Fix typo.
---
dlls/vbscript/global.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/vbscript/global.c b/dlls/vbscript/global.c index fbd8601..c142d10 100644 --- a/dlls/vbscript/global.c +++ b/dlls/vbscript/global.c @@ -429,7 +429,7 @@ static HRESULT Global_CBool(vbdisp_t *This, VARIANT *arg, unsigned args_cnt, VAR val = V_R8(arg) > 0.0 || V_R8(arg) < 0.0; break; default: - ERR("Not a numeric vaule: %s\n", debugstr_variant(arg)); + ERR("Not a numeric value: %s\n", debugstr_variant(arg)); return E_FAIL; }