Module: wine Branch: master Commit: 1f29734b185fa06759c38075cb9f3bd9abbef45a URL: http://source.winehq.org/git/wine.git/?a=commit;h=1f29734b185fa06759c38075cb...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Sat Nov 30 23:54:51 2013 +0200
d3dcompiler_43: Fix a typo.
---
dlls/d3dcompiler_43/reflection.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3dcompiler_43/reflection.c b/dlls/d3dcompiler_43/reflection.c index 9d59ce4..e2955f0 100644 --- a/dlls/d3dcompiler_43/reflection.c +++ b/dlls/d3dcompiler_43/reflection.c @@ -182,7 +182,7 @@ static BOOL copy_value(const char *ptr, void **value, DWORD size) *value = HeapAlloc(GetProcessHeap(), 0, size); if (!*value) { - ERR("Failed to allocate vlaue memory.\n"); + ERR("Failed to allocate value memory.\n"); return FALSE; }