Commit d55bb449 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Assorted spelling fixes.

parent f397f482
...@@ -1143,7 +1143,7 @@ void fill_cpu_info(void) ...@@ -1143,7 +1143,7 @@ void fill_cpu_info(void)
} }
#else #else
num = 1; num = 1;
FIXME("Detecting the number of processors not suported.\n"); FIXME("Detecting the number of processors is not supported.\n");
#endif #endif
NtCurrentTeb()->Peb->NumberOfProcessors = num; NtCurrentTeb()->Peb->NumberOfProcessors = num;
......
...@@ -324,7 +324,7 @@ static HRESULT install_file(install_ctx_t *ctx, const WCHAR *cache_file) ...@@ -324,7 +324,7 @@ static HRESULT install_file(install_ctx_t *ctx, const WCHAR *cache_file)
if(!strcmpW(ext, cab_extW)) { if(!strcmpW(ext, cab_extW)) {
hres = install_cab_file(ctx); hres = install_cab_file(ctx);
}else { }else {
FIXME("Unsupported extention %s\n", debugstr_w(ext)); FIXME("Unsupported extension %s\n", debugstr_w(ext));
hres = E_NOTIMPL; hres = E_NOTIMPL;
} }
SysFreeString(path); SysFreeString(path);
......
...@@ -732,8 +732,8 @@ for %%i in (%INT_PARMS%) do call :EQUtest %%i 10 ...@@ -732,8 +732,8 @@ for %%i in (%INT_PARMS%) do call :EQUtest %%i 10
for %%i in (%INT_PARMS%) do call :EQUtest %%i 9 for %%i in (%INT_PARMS%) do call :EQUtest %%i 9
if 011 EQU 9 (echo octal ok) if 011 EQU 9 (echo octal ok)
if 0xA1 EQU 161 (echo hexa ok) if 0xA1 EQU 161 (echo hexa ok)
if 0xA1 EQU "161" (echo hexa should be be recognized) else (echo string/hexa compare ok) if 0xA1 EQU "161" (echo hexa should be recognized) else (echo string/hexa compare ok)
if "0xA1" EQU 161 (echo hexa should be be recognized) else (echo string/hexa compare ok) if "0xA1" EQU 161 (echo hexa should be recognized) else (echo string/hexa compare ok)
for %%i in (%INT_PARMS%) do call :NEQtest %%i 0 for %%i in (%INT_PARMS%) do call :NEQtest %%i 0
for %%i in (%INT_PARMS%) do call :NEQtest %%i 1 for %%i in (%INT_PARMS%) do call :NEQtest %%i 1
for %%i in (%INT_PARMS%) do call :NEQtest %%i 10 for %%i in (%INT_PARMS%) do call :NEQtest %%i 10
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment