Search
lxdream.org :: lxdream/src/loader.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/loader.c
changeset 454:f6586b97813a
prev450:207461e79f21
next481:3b2d6c5a19ad
author nkeynes
date Wed Oct 31 09:06:48 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Handle case of setting value to itself (ie don't change anything)
file annotate diff log raw
1.1 --- a/src/loader.c Wed Oct 17 11:26:45 2007 +0000
1.2 +++ b/src/loader.c Wed Oct 31 09:06:48 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
.