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
261d7418
Commit
261d7418
authored
Jan 13, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Jan 25, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Change return type of _ctime32_s and _ctime64_s to errno_t.
parent
ae8797c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
time.c
dlls/msvcrt/time.c
+2
-2
No files found.
dlls/msvcrt/time.c
View file @
261d7418
...
@@ -1715,7 +1715,7 @@ char * CDECL _ctime64(const __time64_t *time)
...
@@ -1715,7 +1715,7 @@ char * CDECL _ctime64(const __time64_t *time)
/*********************************************************************
/*********************************************************************
* _ctime64_s (MSVCRT.@)
* _ctime64_s (MSVCRT.@)
*/
*/
in
t
CDECL
_ctime64_s
(
char
*
res
,
size_t
len
,
const
__time64_t
*
time
)
errno_
t
CDECL
_ctime64_s
(
char
*
res
,
size_t
len
,
const
__time64_t
*
time
)
{
{
struct
tm
*
t
;
struct
tm
*
t
;
...
@@ -1744,7 +1744,7 @@ char * CDECL _ctime32(const __time32_t *time)
...
@@ -1744,7 +1744,7 @@ char * CDECL _ctime32(const __time32_t *time)
/*********************************************************************
/*********************************************************************
* _ctime32_s (MSVCRT.@)
* _ctime32_s (MSVCRT.@)
*/
*/
in
t
CDECL
_ctime32_s
(
char
*
res
,
size_t
len
,
const
__time32_t
*
time
)
errno_
t
CDECL
_ctime32_s
(
char
*
res
,
size_t
len
,
const
__time32_t
*
time
)
{
{
struct
tm
*
t
;
struct
tm
*
t
;
...
...
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