Fixed some variable names to fit coding style guidelines.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38752 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Scott McCreary 2010-09-21 06:30:21 +00:00
parent 6c0294819a
commit 88ff3bdb33
2 changed files with 4 additions and 4 deletions

View File

@ -114,7 +114,7 @@ extern "C" {
#endif #endif
unsigned if_nametoindex(const char* name); unsigned if_nametoindex(const char* name);
char* if_indextoname(unsigned ifindex, char* nameBuffer); char* if_indextoname(unsigned interfaceIndex, char* nameBuffer);
struct if_nameindex* if_nameindex(void); struct if_nameindex* if_nameindex(void);
void if_freenameindex(struct if_nameindex* interfaceArray); void if_freenameindex(struct if_nameindex* interfaceArray);

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2005, Haiku, Inc. All Rights Reserved. * Copyright 2005-2010, Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
#ifndef _STAT_VFS_H_ #ifndef _STAT_VFS_H_
@ -31,8 +31,8 @@ struct statvfs {
extern "C" { extern "C" {
#endif #endif
int statvfs(const char *path, struct statvfs *buf); int statvfs(const char *path, struct statvfs *buffer);
int fstatvfs(int fildes, struct statvfs *buf); int fstatvfs(int descriptor, struct statvfs *buffer);
#ifdef __cplusplus #ifdef __cplusplus
} }