Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f963f939
Commit
f963f939
authored
Jan 05, 2013
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
6ada0608
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
11 additions
and
11 deletions
+11
-11
rootstore.c
dlls/crypt32/rootstore.c
+1
-1
hlsl.c
dlls/d3dcompiler_43/tests/hlsl.c
+1
-1
texture.c
dlls/d3dx9_36/tests/texture.c
+1
-1
navigate.c
dlls/mshtml/navigate.c
+1
-1
compobj.c
dlls/ole32/tests/compobj.c
+1
-1
usp10.c
dlls/usp10/tests/usp10.c
+1
-1
waveform.c
dlls/winmm/waveform.c
+1
-1
reader.c
dlls/xmllite/reader.c
+1
-1
builtins.c
programs/cmd/builtins.c
+1
-1
test_builtins.cmd
programs/cmd/tests/test_builtins.cmd
+2
-2
No files found.
dlls/crypt32/rootstore.c
View file @
f963f939
...
...
@@ -189,7 +189,7 @@ static const char *trust_status_to_str(DWORD status)
"
\n\t
bad name constraints"
);
if
(
status
&
CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT
)
pos
+=
snprintf
(
buf
+
pos
,
sizeof
(
buf
)
-
pos
,
"
\n\t
unsuported name constraint"
);
"
\n\t
unsup
p
orted name constraint"
);
if
(
status
&
CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT
)
pos
+=
snprintf
(
buf
+
pos
,
sizeof
(
buf
)
-
pos
,
"
\n\t
undefined name constraint"
);
...
...
dlls/d3dcompiler_43/tests/hlsl.c
View file @
f963f939
...
...
@@ -642,7 +642,7 @@ static void test_fail(IDirect3DDevice9 *device, IDirect3DVertexBuffer9 *qquad_ge
"function names
\n
"
);
ok
(
errors
!=
NULL
,
"No errors returned for a shader with invalid variable and function "
"names
\n
"
);
ok
(
compiled
==
NULL
,
"A shader blob was retur
en
d for a shader with invalid variable and "
ok
(
compiled
==
NULL
,
"A shader blob was retur
ne
d for a shader with invalid variable and "
"function names
\n
"
);
IUnknown_Release
(
errors
);
...
...
dlls/d3dx9_36/tests/texture.c
View file @
f963f939
...
...
@@ -1591,7 +1591,7 @@ static void test_D3DXCreateVolumeTextureFromFileInMemory(IDirect3DDevice9 *devic
ok
(
levelcount
==
3
,
"GetLevelCount returned %u, expected 3
\n
"
,
levelcount
);
hr
=
IDirect3DVolumeTexture9_GetLevelDesc
(
volume_texture
,
0
,
&
volume_desc
);
ok
(
hr
==
D3D_OK
,
"GetLevelDesc retur
en
d %#x, expected %#x
\n
"
,
hr
,
D3D_OK
);
ok
(
hr
==
D3D_OK
,
"GetLevelDesc retur
ne
d %#x, expected %#x
\n
"
,
hr
,
D3D_OK
);
ok
(
volume_desc
.
Width
==
4
,
"Got width %u, expected 4
\n
"
,
volume_desc
.
Width
);
ok
(
volume_desc
.
Height
==
4
,
"Got height %u, expected 4
\n
"
,
volume_desc
.
Height
);
ok
(
volume_desc
.
Depth
==
2
,
"Got depth %u, expected 2
\n
"
,
volume_desc
.
Depth
);
...
...
dlls/mshtml/navigate.c
View file @
f963f939
...
...
@@ -1248,7 +1248,7 @@ static nsresult NSAPI nsAsyncVerifyRedirectCallback_QueryInterface(nsIAsyncVerif
nsRedirectCallback
*
This
=
impl_from_nsIAsyncVerifyRedirectCallback
(
iface
);
if
(
IsEqualGUID
(
&
IID_nsISupports
,
riid
))
{
TRACE
(
"(%p)->(IID_nsISuports %p)
\n
"
,
This
,
result
);
TRACE
(
"(%p)->(IID_nsISup
p
orts %p)
\n
"
,
This
,
result
);
*
result
=
&
This
->
nsIAsyncVerifyRedirectCallback_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_nsIAsyncVerifyRedirectCallback
,
riid
))
{
TRACE
(
"(%p)->(IID_nsIAsyncVerifyRedirectCallback %p)
\n
"
,
This
,
result
);
...
...
dlls/ole32/tests/compobj.c
View file @
f963f939
...
...
@@ -707,7 +707,7 @@ static void test_CoRegisterPSClsid(void)
CLSID
clsid
;
hr
=
CoRegisterPSClsid
(
&
IID_IWineTest
,
&
CLSID_WineTestPSFactoryBuffer
);
ok
(
hr
==
CO_E_NOTINITIALIZED
,
"CoRegisterPSClsid should have retur
e
ned CO_E_NOTINITIALIZED instead of 0x%08x
\n
"
,
hr
);
ok
(
hr
==
CO_E_NOTINITIALIZED
,
"CoRegisterPSClsid should have returned CO_E_NOTINITIALIZED instead of 0x%08x
\n
"
,
hr
);
pCoInitializeEx
(
NULL
,
COINIT_APARTMENTTHREADED
);
...
...
dlls/usp10/tests/usp10.c
View file @
f963f939
...
...
@@ -1860,7 +1860,7 @@ static void test_ScriptGetFontProperties(HDC hdc)
static
const
WCHAR
invalids
[]
=
{
0x0020
,
0x200B
,
0xF71B
};
/* U+0020: numeric space
U+200B: zero width space
U+F71B: unkown, found by black box testing */
U+F71B: unk
n
own, found by black box testing */
BOOL
is_terminal
,
is_arial
,
is_times_new_roman
,
is_arabic
=
(
system_lang_id
==
LANG_ARABIC
);
/* Some sanity checks for ScriptGetFontProperties */
...
...
dlls/winmm/waveform.c
View file @
f963f939
...
...
@@ -107,7 +107,7 @@ typedef struct _WINMM_Device {
BOOL
stopped
;
DWORD
loop_counter
;
UINT32
bytes_per_frame
,
samples_per_sec
,
ofs_bytes
,
played_frames
;
UINT32
remainder_frames
;
/* header chunk frames already played when a device switch occured */
UINT32
remainder_frames
;
/* header chunk frames already played when a device switch occur
r
ed */
/* stored in frames of sample rate, *not* AC::GetFrequency */
UINT64
last_clock_pos
;
...
...
dlls/xmllite/reader.c
View file @
f963f939
...
...
@@ -366,7 +366,7 @@ static HRESULT readerinput_growraw(xmlreaderinput *readerinput)
ULONG
read
;
HRESULT
hr
;
/* always try to get aligned to 4 bytes, so the only case we can get partialy read characters is
/* always try to get aligned to 4 bytes, so the only case we can get partial
l
y read characters is
variable width encodings like UTF-8 */
len
=
(
len
+
3
)
&
~
3
;
/* try to use allocated space or grow */
...
...
programs/cmd/builtins.c
View file @
f963f939
...
...
@@ -3778,7 +3778,7 @@ static int WCMD_handleExpression(WCHAR **expr, int *ret, int depth)
WCHAR
*
nextpos
;
/* Cannot have an expression with var/number twice, without an operator
inbetween, nor or number following a half constructed << or >> operator */
in
-
between, nor or number following a half constructed << or >> operator */
if
(
lastwasnumber
||
foundhalf
)
{
rc
=
WCMD_NOOPERATOR
;
goto
exprerrorreturn
;
...
...
programs/cmd/tests/test_builtins.cmd
View file @
f963f939
...
...
@@ -1220,7 +1220,7 @@ set WINE_foo=2
set /a WINE_bar=WINE_foo=7
call :checkenvvars WINE_foo 7 WINE_bar 7
echo ----- equal precedence on stack
rem Unary - dont reduce if precedence is equal
rem Unary - don
'
t reduce if precedence is equal
set /a WINE_foo=!!1
call :checkenvvars WINE_foo 1
set /a WINE_foo=!!0
...
...
@@ -1262,7 +1262,7 @@ set /a WINE_foo=10-5+2
call :checkenvvars WINE_foo 7
set /a WINE_foo=1^<^<4^>^>1
call :checkenvvars WINE_foo 8
rem Assignment - dont reduce if precedence is equal
rem Assignment - don
'
t reduce if precedence is equal
set /a WINE_foo=5
set /a WINE_bar=WINE_foo=6
call :checkenvvars WINE_foo 6 WINE_bar 6
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment