mirror of
https://github.com/linux-pam/linux-pam.git
synced 2024-11-27 11:43:38 +08:00
conf/pam_conv1: fix clang compilation warnings
Fix the following compilation warnings reported by clang: pam_conv_y.y:12:23: warning: unused variable 'bisonid' [-Wunused-const-variable] static const char bisonid[]= ^ pam_conv_l.l:12:23: warning: unused variable 'lexid' [-Wunused-const-variable] static const char lexid[]= ^ These static variables lost their meaning after repository conversion from cvs to git and can be safely removed. * conf/pam_conv1/pam_conv_l.l (lexid): Remove. * conf/pam_conv1/pam_conv_y.y (bisonid): Remove.
This commit is contained in:
parent
8b7112d4f0
commit
a6c963b6f8
@ -9,10 +9,6 @@
|
||||
* distributed with this file.)
|
||||
*/
|
||||
|
||||
static const char lexid[]=
|
||||
"$Id$\n"
|
||||
"Copyright (c) Andrew G. Morgan 1997 <morgan@parc.power.net>\n";
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
@ -9,10 +9,6 @@
|
||||
* distributed with this file.)
|
||||
*/
|
||||
|
||||
static const char bisonid[]=
|
||||
"$Id$\n"
|
||||
"Copyright (c) Andrew G. Morgan 1997-8 <morgan@linux.kernel.org>\n";
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user