- Timestamp:
- Oct 1, 2007, 7:29:40 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/read.c
r1170 r1172 489 489 /* open and read it into memory. ignore non-existing dependency files 490 490 or that we can't read. */ 491 if (!file_exists_p (name))492 return;493 491 errno = 0; 494 492 #ifdef O_BINARY … … 499 497 if (fd < 0) 500 498 { 499 int err = errno; 500 if (!file_exists_p (name)) 501 return; 501 502 error (f, "%s: %s", name, strerror (errno)); 502 503 return;
Note:
See TracChangeset
for help on using the changeset viewer.