Search
lxdream.org :: lxdream :: r454:f6586b97813a
lxdream 0.9.1
released Jun 29
Download Now
changeset454:f6586b97813a
parent453:20f9c11e69e5
child455:3080881d00d4
authornkeynes
dateSun Oct 21 05:20:35 2007 +0000 (16 years ago)
Remove error on unable to open file
src/loader.c
1.1 --- a/src/loader.c Sun Oct 21 05:20:15 2007 +0000
1.2 +++ b/src/loader.c Sun Oct 21 05:20:35 2007 +0000
1.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 the
1.9 * whole procedure of making a CD image for them.
1.10 @@ -57,8 +57,6 @@
1.11
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 }
1.18
.