diff options
author | dfr <dfr@FreeBSD.org> | 1998-09-26 10:51:38 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1998-09-26 10:51:38 +0000 |
commit | ad6ddb77671a5780eefdb973075656e601890d74 (patch) | |
tree | 7ee815e87abf339583a4b840f14159bc49a21714 /sys/boot/common/devopen.c | |
parent | 236ad5eb3ca90664e90a383de91faa975d35b8fc (diff) | |
download | FreeBSD-src-ad6ddb77671a5780eefdb973075656e601890d74.zip FreeBSD-src-ad6ddb77671a5780eefdb973075656e601890d74.tar.gz |
* Add old UFS compatibility code to alpha/boot1.
* Fix a raft of warnings, printf and otherwise.
* Allocate the correct amount in mod_searchmodule to prevent an overflow.
* Fix the makefiles so they work outside my home directory (oops).
Diffstat (limited to 'sys/boot/common/devopen.c')
-rw-r--r-- | sys/boot/common/devopen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/common/devopen.c b/sys/boot/common/devopen.c index bb03f3d..83489c6 100644 --- a/sys/boot/common/devopen.c +++ b/sys/boot/common/devopen.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: devopen.c,v 1.1.1.1 1998/08/21 03:17:41 msmith Exp $ */ @@ -33,7 +33,7 @@ #include "bootstrap.h" int -devopen(struct open_file *f, const char *fname, char **file) +devopen(struct open_file *f, const char *fname, const char **file) { struct devdesc *dev; int result; |