Changeset 28484 for branches/pap/psLib/src/sys/psLogMsg.c
- Timestamp:
- Jun 24, 2010, 2:59:09 PM (16 years ago)
- Location:
- branches/pap
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psLib/src/sys/psLogMsg.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap
- Property svn:mergeinfo changed
-
branches/pap/psLib/src/sys/psLogMsg.c
r23486 r28484 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.
