Delete extra whitespace at the end of line, which annoys quilt

git-svn-id: svn://coreboot.org/openbios/openbios-devel@284 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Blue Swirl
2008-12-11 20:30:53 +00:00
parent 3038a07be7
commit 58ca864765
200 changed files with 1661 additions and 1661 deletions

View File

@@ -1,17 +1,17 @@
/*
/*
* Creation Date: <2003/12/07 19:36:00 samuel>
* Time-stamp: <2004/01/07 19:28:43 samuel>
*
*
* <diskio.c>
*
*
* I/O wrappers
*
*
* Copyright (C) 2003, 2004 Samuel Rydh (samuel@ibrium.se)
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2
*
*
*/
#include "openbios/config.h"
@@ -61,10 +61,10 @@ open_ih( ihandle_t ih )
break;
if(fd==MAX_FD)
return -1;
fdp = malloc( sizeof(*fdp) );
/* Better clear the fd, as it
* contains valuable information
/* Better clear the fd, as it
* contains valuable information
*/
memset(fdp, 0, sizeof(*fdp));
fdp->ih = ih;
@@ -82,15 +82,15 @@ open_io( const char *spec )
int fd;
ihandle_t ih = open_dev( spec );
priv_fd_t *fdp;
if( !ih )
return -1;
if( (fd=open_ih(ih)) == -1 ) {
close_dev( ih );
return -1;
}
fdp = file_descriptors[fd];
fdp->do_close = 1;
@@ -102,10 +102,10 @@ reopen( int fd, const char *filename )
{
priv_fd_t *fdp = file_descriptors[fd];
int ret;
if( lookup_xt(fdp->ih, "reopen", &fdp->reopen_xt) )
return -1;
push_str( filename );
call_package( fdp->reopen_xt, fdp->ih );
ret = (POP() == (ucell)-1)? 0 : -1;
@@ -117,7 +117,7 @@ int
reopen_nwrom( int fd )
{
priv_fd_t *fdp = file_descriptors[fd];
if( lookup_xt(fdp->ih, "open-nwrom", &fdp->open_nwrom_xt) )
return -1;
call_package( fdp->open_nwrom_xt, fdp->ih );
@@ -166,12 +166,12 @@ read_io( int fd, void *buf, size_t cnt )
{
priv_fd_t *fdp = file_descriptors[fd];
ucell ret;
PUSH( (ucell)buf );
PUSH( cnt );
call_package( fdp->read_xt, fdp->ih );
ret = POP();
if( !ret && cnt )
ret = -1;
return ret;
@@ -188,11 +188,11 @@ seek_io( int fd, llong offs )
}
llong
tell( int fd )
tell( int fd )
{
priv_fd_t *fdp = file_descriptors[fd];
llong offs;
if( lookup_xt(fdp->ih, "tell", &fdp->tell_xt) )
return -1;
call_package( fdp->tell_xt, fdp->ih );

View File

@@ -1,17 +1,17 @@
/*
/*
* Creation Date: <2003/10/18 13:52:32 samuel>
* Time-stamp: <2003/10/18 13:54:24 samuel>
*
*
* <extra.c>
*
*
* Libc extras
*
*
* Copyright (C) 2003 Samuel Rydh (samuel@ibrium.se)
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2
*
*
*/
#include "openbios/config.h"

View File

@@ -1,17 +1,17 @@
/*
/*
* Creation Date: <2002/10/19 21:05:07 samuel>
* Time-stamp: <2002/10/22 22:29:18 samuel>
*
*
* <misc.c>
*
*
* Miscellaneous
*
*
* Copyright (C) 2002, 2003 Samuel Rydh (samuel@ibrium.se)
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation
*
*
*/
#include "openbios/config.h"

View File

@@ -216,7 +216,7 @@ int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
/* get the precision */
precision = -1;
if (*fmt == '.') {
++fmt;
++fmt;
if (isdigit(*fmt))
precision = skip_atoi(&fmt);
else if (*fmt == '*') {