Changeset 0d0b319 in mainline for uspace/lib/posix/source/time.c
- Timestamp:
- 2018-01-04T20:03:02Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3c7702c0
- Parents:
- 10de842
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:18:29)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:03:02)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/time.c
r10de842 r0d0b319 41 41 42 42 #include "posix/ctype.h" 43 #include "posix/errno.h" 43 44 #include <errno.h> 45 44 46 #include "posix/signal.h" 45 47 #include "posix/assert.h" … … 100 102 struct tm *restrict result) 101 103 { 102 int rc = time_utc2tm(*timer, result); 103 if (rc != EOK) { 104 errno = rc; 104 if (failed(time_utc2tm(*timer, result))) { 105 105 return NULL; 106 106 } … … 197 197 char *posix_ctime_r(const time_t *timer, char *buf) 198 198 { 199 int r = time_local2str(*timer, buf); 200 if (r != EOK) { 201 errno = r; 199 if (failed(time_local2str(*timer, buf))) { 202 200 return NULL; 203 201 }
Note:
See TracChangeset
for help on using the changeset viewer.