Reference variable "ap" in lint dummy code to avoid warning about

unnecessary assignment.
This commit is contained in:
tron 2002-01-03 16:13:11 +00:00
parent 9191aacdb4
commit d3de7d0eb7
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: __semctl13.c,v 1.2 2002/01/03 01:55:49 thorpej Exp $ */ /* $NetBSD: __semctl13.c,v 1.3 2002/01/03 16:13:11 tron Exp $ */
/*- /*-
* Copyright (c) 2000 The NetBSD Foundation, Inc. * Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: __semctl13.c,v 1.2 2002/01/03 01:55:49 thorpej Exp $"); __RCSID("$NetBSD: __semctl13.c,v 1.3 2002/01/03 16:13:11 tron Exp $");
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#include <sys/types.h> #include <sys/types.h>
@ -81,7 +81,7 @@ int __semctl13(va_alist)
case SETVAL: case SETVAL:
case SETALL: case SETALL:
#ifdef __lint__ #ifdef __lint__
memcpy(&semun, &semun, sizeof(semun)); memcpy(&semun, &ap, sizeof(semun));
#else #else
semun = va_arg(ap, union __semun); semun = va_arg(ap, union __semun);
#endif #endif