Changeset 46577995 in mainline for uspace/app/bdsh/cmds/modules/sleep/sleep.c
- Timestamp:
- 2018-01-04T20:50:52Z (8 years ago)
- Children:
- e211ea04
- Parents:
- facacc71
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- File:
-
- 1 edited
-
uspace/app/bdsh/cmds/modules/sleep/sleep.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/sleep/sleep.c
rfacacc71 r46577995 62 62 * @return EOK if conversion was successful. 63 63 */ 64 static int decimal_to_useconds(const char *nptr, useconds_t *result)64 static errno_t decimal_to_useconds(const char *nptr, useconds_t *result) 65 65 { 66 int ret;66 errno_t ret; 67 67 uint64_t whole_seconds; 68 68 uint64_t frac_seconds; … … 112 112 int cmd_sleep(char **argv) 113 113 { 114 int ret;114 errno_t ret; 115 115 unsigned int argc; 116 116 useconds_t duration = 0;
Note:
See TracChangeset
for help on using the changeset viewer.
