diff options
Diffstat (limited to 'gnu/usr.bin/perl/NetWare/nwhashcls.cpp')
-rw-r--r-- | gnu/usr.bin/perl/NetWare/nwhashcls.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/NetWare/nwhashcls.cpp b/gnu/usr.bin/perl/NetWare/nwhashcls.cpp index 2bf24856e51..aaf5a5c0be6 100644 --- a/gnu/usr.bin/perl/NetWare/nwhashcls.cpp +++ b/gnu/usr.bin/perl/NetWare/nwhashcls.cpp @@ -97,7 +97,7 @@ NWPerlHashList::remove(void *ldata) } -void NWPerlHashList::forAll( register void (*user_fn)(void *, void*), void *data ) const +void NWPerlHashList::forAll( void (*user_fn)(void *, void*), void *data ) const { for(int i=0; i<BUCKET_SIZE; i++) @@ -210,7 +210,7 @@ NWPerlKeyHashList::remove(void *key) } -void NWPerlKeyHashList::forAll( register void (*user_fn)(void *, void*), void *data ) const +void NWPerlKeyHashList::forAll( void (*user_fn)(void *, void*), void *data ) const { for(int i=0; i<BUCKET_SIZE; i++) |