Changeset 267f235 in mainline for uspace/lib/c/generic/io/log.c
- Timestamp:
- 2012-08-17T13:06:32Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 20dd67e
- Parents:
- 52c4264
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/log.c
r52c4264 r267f235 135 135 * 136 136 * @param prog_name Program name, will be printed as part of message 137 * @param level Minimum message level to print 138 */ 139 int log_init(const char *prog_name, log_level_t level) 140 { 141 assert(level < LVL_LIMIT); 142 137 */ 138 int log_init(const char *prog_name) 139 { 143 140 log_prog_name = str_dup(prog_name); 144 141 if (log_prog_name == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.