revision 454:f6586b97813a
summary |
tree |
shortlog |
changelog |
graph |
changeset |
raw | bz2 | zip | gz changeset | 454:f6586b97813a |
parent | 453:20f9c11e69e5 |
child | 455:3080881d00d4 |
author | nkeynes |
date | Sun Oct 21 05:20:35 2007 +0000 (16 years ago) |
Remove error on unable to open file
![]() | src/loader.c | view | annotate | diff | log |
1.1 --- a/src/loader.c Sun Oct 21 05:20:15 2007 +00001.2 +++ b/src/loader.c Sun Oct 21 05:20:35 2007 +00001.3 @@ -1,5 +1,5 @@1.4 /**1.5 - * $Id: loader.c,v 1.19 2007-10-17 11:26:45 nkeynes Exp $1.6 + * $Id: loader.c,v 1.20 2007-10-21 05:20:35 nkeynes Exp $1.7 *1.8 * File loading routines, mostly for loading demos without going through the1.9 * whole procedure of making a CD image for them.1.10 @@ -57,8 +57,6 @@1.12 int fd = open( filename, O_RDONLY );1.13 if( fd == -1 ) {1.14 - ERROR( "Unable to open file: '%s' (%s)", filename,1.15 - strerror(errno) );1.16 return FALSE;1.17 }
.