Changeset 28404
- Timestamp:
- Jun 18, 2010, 1:32:32 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psLogMsg.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psLogMsg.c
r23486 r28404 28 28 #include <stdarg.h> 29 29 #include <time.h> 30 #include <sys/types.h> 30 31 #include <unistd.h> 31 32 #include <fcntl.h> … … 200 201 return -1; 201 202 } 203 204 if (lseek(fileD, 0, SEEK_END) == -1) { 205 psError(PS_ERR_IO, true, "Could not seek to end of file %s", dest); 206 return -1; 207 } 208 202 209 return fileD; 203 210 }
Note:
See TracChangeset
for help on using the changeset viewer.
