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
7b0cde8f
Commit
7b0cde8f
authored
Mar 06, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
eeb289ef
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+1
-1
install.c
dlls/msi/tests/install.c
+1
-1
psdrv.h
dlls/wineps.drv/psdrv.h
+1
-1
batch.c
programs/cmd/batch.c
+4
-4
builtins.c
programs/cmd/builtins.c
+1
-1
No files found.
dlls/mshtml/tests/htmldoc.c
View file @
7b0cde8f
...
...
@@ -207,7 +207,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
ok
(
bindinfo
.
dwOptionsFlags
==
0
,
"bindinfo.dwOptionsFlags=%d
\n
"
,
bindinfo
.
dwOptionsFlags
);
/* TODO: test dwCodePage */
/* TODO: test securityAttributes */
ok
(
IsEqualGUID
(
&
IID_NULL
,
&
bindinfo
.
iid
),
"unex
e
pected bindinfo.iid
\n
"
);
ok
(
IsEqualGUID
(
&
IID_NULL
,
&
bindinfo
.
iid
),
"unexpected bindinfo.iid
\n
"
);
ok
(
bindinfo
.
pUnk
==
NULL
,
"bindinfo.pUnk=%p
\n
"
,
bindinfo
.
pUnk
);
ok
(
bindinfo
.
dwReserved
==
0
,
"bindinfo.dwReserved=%d
\n
"
,
bindinfo
.
dwReserved
);
...
...
dlls/msi/tests/install.c
View file @
7b0cde8f
...
...
@@ -1195,7 +1195,7 @@ static void test_readonlyfile(void)
lstrcat
(
path
,
"
\\
maximus"
);
file
=
CreateFile
(
path
,
GENERIC_READ
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
,
NULL
,
CREATE_NEW
,
FILE_ATTRIBUTE_READONLY
,
NULL
);
if
(
file
==
INVALID_HANDLE_VALUE
)
printf
(
"didnt work here: %d
\n
"
,
GetLastError
());
if
(
file
==
INVALID_HANDLE_VALUE
)
printf
(
"didn
'
t work here: %d
\n
"
,
GetLastError
());
WriteFile
(
file
,
"readonlyfile"
,
20
,
&
size
,
NULL
);
CloseHandle
(
file
);
...
...
dlls/wineps.drv/psdrv.h
View file @
7b0cde8f
...
...
@@ -191,7 +191,7 @@ typedef struct _tagDUPLEX {
struct
_tagDUPLEX
*
next
;
}
DUPLEX
;
/* Many Mac
OS
X based ppd files don't include a *ColorDevice line, so
/* Many Mac
OS
X based ppd files don't include a *ColorDevice line, so
we use a tristate here rather than a boolean. Code that
cares is expected to treat these as if they were colour. */
typedef
enum
{
...
...
programs/cmd/batch.c
View file @
7b0cde8f
...
...
@@ -495,7 +495,7 @@ void WCMD_HandleTildaModifiers(char **start, char *forVariable) {
/* 4. Handle 'z' : File length */
if
(
exists
&&
memchr
(
firstModifier
,
'z'
,
modifierLen
)
!=
NULL
)
{
/* FIXME: Output full 64 bit size (sprintf not support I64 here) */
/* FIXME: Output full 64 bit size (sprintf
does
not support I64 here) */
ULONG
/*64*/
fullsize
=
/*(fileInfo.nFileSizeHigh << 32) +*/
fileInfo
.
nFileSizeLow
;
...
...
@@ -505,14 +505,14 @@ void WCMD_HandleTildaModifiers(char **start, char *forVariable) {
strcat
(
finaloutput
,
thisoutput
);
}
/* 4. Handle 's' : Use short paths (File doesnt have to exist) */
/* 4. Handle 's' : Use short paths (File doesn
'
t have to exist) */
if
(
memchr
(
firstModifier
,
's'
,
modifierLen
)
!=
NULL
)
{
if
(
finaloutput
[
0
]
!=
0x00
)
strcat
(
finaloutput
,
" "
);
/* Dont flag as doneModifier - %~s on its own is processed later */
/* Don
'
t flag as doneModifier - %~s on its own is processed later */
GetShortPathName
(
outputparam
,
outputparam
,
sizeof
(
outputparam
));
}
/* 5. Handle 'f' : Fully qualified path (File doesnt have to exist) */
/* 5. Handle 'f' : Fully qualified path (File doesn
'
t have to exist) */
/* Note this overrides d,p,n,x */
if
(
memchr
(
firstModifier
,
'f'
,
modifierLen
)
!=
NULL
)
{
doneModifier
=
TRUE
;
...
...
programs/cmd/builtins.c
View file @
7b0cde8f
...
...
@@ -1504,7 +1504,7 @@ void WCMD_assoc (char *command) {
return
;
}
/* If no param
a
ters then list all associations */
/* If no param
e
ters then list all associations */
if
(
*
command
==
0x00
)
{
int
index
=
0
;
...
...
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