The blunt instrument approach to dealing with optional compiler sugar:
arbitrarily use the formerly-unused variable. Everybody's happy.
This commit is contained in:
parent
90ee124aaf
commit
881509a404
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: sunlabel.c,v 1.20 2007/12/17 23:04:37 apb Exp $ */
|
/* $NetBSD: sunlabel.c,v 1.21 2007/12/18 07:33:54 dogcow Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
#if defined(__RCSID) && !defined(lint)
|
#if defined(__RCSID) && !defined(lint)
|
||||||
__RCSID("$NetBSD: sunlabel.c,v 1.20 2007/12/17 23:04:37 apb Exp $");
|
__RCSID("$NetBSD: sunlabel.c,v 1.21 2007/12/18 07:33:54 dogcow Exp $");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -930,10 +930,10 @@ update_spc(void)
|
||||||
* label, but we don't depend on that.
|
* label, but we don't depend on that.
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
/*ARGSUSED*/
|
print_ascii(struct field *f, int sofar)
|
||||||
print_ascii(struct field *f, int sofar __unused)
|
|
||||||
{
|
{
|
||||||
printf("%s: %.128s\n", f->tag, (char *)f->loc);
|
printf("%s: %.128s\n", f->tag, (char *)f->loc);
|
||||||
|
sofar = 0;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue