* This fixes the stupid compiler warning reported by Vasilis.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26129 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-06-25 11:45:03 +00:00
parent ea538ecee8
commit 42fe8ffbd2

View File

@ -307,8 +307,7 @@ class Vnode {
status_t Get(Inode** _inode)
{
if (fStatus == B_OK)
*_inode = fInode;
*_inode = fInode;
return fStatus;
}
@ -327,7 +326,7 @@ class AttributeIterator {
public:
AttributeIterator(Inode *inode);
~AttributeIterator();
status_t Rewind();
status_t GetNext(char *name, size_t *length, uint32 *type, ino_t *id);