Changeset 8f3230e in mainline
- Timestamp:
- 2018-03-26T15:27:00Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ba88ae
- Parents:
- 92cf9a4
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-26 15:21:43)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-26 15:27:00)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/src/stdio.c
r92cf9a4 r8f3230e 343 343 int vsprintf(char *s, const char *restrict format, va_list ap) 344 344 { 345 return vsnprintf(s, STR_NO_LIMIT, format, ap);345 return vsnprintf(s, INT_MAX, format, ap); 346 346 } 347 347
Note:
See TracChangeset
for help on using the changeset viewer.