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
f42ede78
Commit
f42ede78
authored
Jul 19, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Jul 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi/tests: Fix GLE for SHFormatDateTimeA.
parent
fb88e06e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
ordinal.c
dlls/shlwapi/tests/ordinal.c
+2
-1
No files found.
dlls/shlwapi/tests/ordinal.c
View file @
f42ede78
...
...
@@ -1589,7 +1589,8 @@ if (0)
SetLastError
(
0xdeadbeef
);
ret
=
pSHFormatDateTimeA
(
&
filetime
,
NULL
,
NULL
,
0
);
ok
(
ret
==
0
,
"got %d
\n
"
,
ret
);
ok
(
GetLastError
()
==
0xdeadbeef
,
"expected 0xdeadbeef, got %d
\n
"
,
GetLastError
());
ok
(
GetLastError
()
==
0xdeadbeef
||
broken
(
GetLastError
()
==
ERROR_SUCCESS
/* Win7 */
),
"expected 0xdeadbeef, got %d
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
buff
[
0
]
=
'a'
;
buff
[
1
]
=
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