Francois Gouget : dpnet/tests: A spelling fix in a variable name.
Module: wine Branch: master Commit: fc8fcc344fa610e1b72fc65562097644f7d1dd37 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fc8fcc344fa610e1b72fc65562... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Feb 10 16:40:32 2017 +0100 dpnet/tests: A spelling fix in a variable name. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/dpnet/tests/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/dpnet/tests/server.c b/dlls/dpnet/tests/server.c index 422e6d6..89dd020 100644 --- a/dlls/dpnet/tests/server.c +++ b/dlls/dpnet/tests/server.c @@ -237,7 +237,7 @@ HRESULT set_firewall( enum firewall_op op ) { static const WCHAR dpnsvrW[] = {'d','p','n','s','v','r','.','e','x','e',0}; - static const WCHAR seperator[] = {'\\',0}; + static const WCHAR separator[] = {'\\',0}; static const WCHAR clientW[] = {'d','p','n','e','t','_','c','l','i','e','n','t',0}; static const WCHAR serverW[] = @@ -262,7 +262,7 @@ HRESULT set_firewall( enum firewall_op op ) SysFreeString( image ); return E_FAIL; } - lstrcatW(path, seperator); + lstrcatW(path, separator); lstrcatW(path, dpnsvrW); init = CoInitializeEx( 0, COINIT_APARTMENTTHREADED );
participants (1)
-
Alexandre Julliard