Changes in / [7da90cd:74c8f344] in mainline
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/klog/klog.c
r7da90cd r74c8f344 118 118 } 119 119 120 /* 121 * Mode "a" would be definitively much better here, but it is 122 * not well supported by the FAT driver. 123 */ 124 log = fopen(LOG_FNAME, "w"); 120 log = fopen(LOG_FNAME, "a"); 125 121 if (log == NULL) 126 122 printf("%s: Unable to create log file %s (%s)\n", NAME, LOG_FNAME, -
uspace/lib/c/generic/io/io.c
r7da90cd r74c8f344 173 173 } 174 174 *flags = (O_APPEND | O_CREAT) | (plus ? O_RDWR : O_WRONLY); 175 break; 175 176 default: 176 177 errno = EINVAL;
Note:
See TracChangeset
for help on using the changeset viewer.