Style cleanups, spacing, pointer style.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33352 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2009-09-29 14:12:08 +00:00
parent 49714746f2
commit c91bc0e189
+2 -2
View File
@@ -242,9 +242,9 @@ status_t BNetAddress::GetAddr( in_addr& addr, unsigned short* port ) const
* Returns:
* B_OK if this instance is initialized, B_ERROR if not.
*/
status_t BNetAddress::InitCheck( void ) const
status_t BNetAddress::InitCheck() const
{
return ( fInit == B_OK ) ? B_OK : B_ERROR;
return fInit == B_OK ? B_OK : B_ERROR;
}