Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
1816e3ec
Commit
1816e3ec
authored
Apr 23, 2008
by
Rémi Denis-Courmont
Browse files
Fix win32 warning
parent
8ee62bb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/vlc_fixups.h
View file @
1816e3ec
...
...
@@ -110,7 +110,7 @@
/* If localtime_r() is not provided, we assume localtime() uses
* thread-specific storage. */
# include <time.h>
static
struct
tm
*
localtime_r
(
const
time_t
*
timep
,
struct
tm
*
result
)
static
inline
struct
tm
*
localtime_r
(
const
time_t
*
timep
,
struct
tm
*
result
)
{
struct
tm
*
s
=
localtime
(
timep
);
if
(
s
==
NULL
)
...
...
Write
Preview
Supports
Markdown
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