Changeset 1816e3ec924d0d5dc1d488b7b0470f9f1c6b587b
- Timestamp:
- 04/23/08 20:23:35
(2 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1208975015 +0300
- git-parent:
[8ee62bb6296e3c1c634eddcab64a5b7391d9796e]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1208975015 +0300
- Message:
Fix win32 warning
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r28737ff |
r1816e3e |
|
| 111 | 111 | * thread-specific storage. */ |
|---|
| 112 | 112 | # include <time.h> |
|---|
| 113 | | static struct tm *localtime_r (const time_t *timep, struct tm *result) |
|---|
| | 113 | static inline struct tm *localtime_r (const time_t *timep, struct tm *result) |
|---|
| 114 | 114 | { |
|---|
| 115 | 115 | struct tm *s = localtime (timep); |
|---|