Unused variable, for GCC4.8.

This commit is contained in:
isaki 2014-03-08 03:20:24 +00:00
parent aca3e771de
commit 8ff9f27f29

View File

@ -1,4 +1,4 @@
/* $NetBSD: fd.c,v 1.7 2011/07/17 20:54:49 joerg Exp $ */
/* $NetBSD: fd.c,v 1.8 2014/03/08 03:20:24 isaki Exp $ */
/*
* Copyright (c) 2001 MINOURA Makoto.
@ -40,7 +40,8 @@ fdopen(struct open_file *f, ...)
int error;
struct fd_softc *sc;
struct fdfmt fdfmt;
int id, part;
int id;
int part __unused;
va_list ap;
va_start(ap, f);