cleanup: remove unnecessary (=invisible) leading spaces

This commit is contained in:
marschap
2006-04-27 15:10:59 +00:00
parent 9b111eeac4
commit d4a3e7444d
40 changed files with 212 additions and 212 deletions
+2 -2
View File
@@ -24,11 +24,11 @@ buffile *buffile_open( const char *path, const char *mode ) {
file = malloc(sizeof(*file));
if ( NULL == file )
return NULL;
file->pos=0;
file->bytesread=0;
file->buf=NULL;
file->f = fopen( path, mode );
if( NULL == file->f ) {
free(file);