Skip to content

Commit

Permalink
Fixed|libdeng2|NativeFile: Build error
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Apr 5, 2014
1 parent c4c6351 commit 27217c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/libdeng2/src/filesys/nativefile.cpp
Expand Up @@ -151,7 +151,7 @@ void NativeFile::close()
DENG2_GUARD(this);

flush();
DENG2_ASSERT(!out);
DENG2_ASSERT(!d->out);

d->closeInput();
}
Expand All @@ -161,7 +161,7 @@ void NativeFile::flush()
DENG2_GUARD(this);

d->closeOutput();
DENG2_ASSERT(!out);
DENG2_ASSERT(!d->out);
}

NativePath const &NativeFile::nativePath() const
Expand Down

0 comments on commit 27217c3

Please sign in to comment.