"Fixed" -Wshadow warnings by changing the name of some function parameters

from `index' to `indx'.  The correct fix would be to not support or use
index().
This commit is contained in:
Bruce Evans 2002-03-27 04:04:17 +00:00
parent 54dc2bc65f
commit c0f7f75fd7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93259

View File

@ -84,7 +84,7 @@ METHOD void probe_nomatch {
METHOD int read_ivar {
device_t dev;
device_t child;
int index;
int indx;
uintptr_t *result;
};
@ -94,7 +94,7 @@ METHOD int read_ivar {
METHOD int write_ivar {
device_t dev;
device_t child;
int index;
int indx;
uintptr_t value;
};