diff options
author | 2010-12-10 10:52:22 +0000 | |
---|---|---|
committer | 2010-12-10 10:52:22 +0000 | |
commit | 52825b5bd9d658676b8e876da720469398877352 (patch) | |
tree | 36b688e334d53462194b99349c5c051077326250 /paludis/environments/paludis/world.cc | |
parent | 77c2c5b6b7686bf8b5093dc12701bcb39019a10a (diff) | |
download | paludis-52825b5bd9d658676b8e876da720469398877352.tar.gz paludis-52825b5bd9d658676b8e876da720469398877352.tar.xz |
Do our own buffering for SafeOFStream
Diffstat (limited to 'paludis/environments/paludis/world.cc')
-rw-r--r-- | paludis/environments/paludis/world.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/environments/paludis/world.cc b/paludis/environments/paludis/world.cc index 79e865da1..2ffd2d1a1 100644 --- a/paludis/environments/paludis/world.cc +++ b/paludis/environments/paludis/world.cc @@ -106,7 +106,7 @@ World::_add_string_to_world(const std::string & n) const { try { - SafeOFStream f(*_imp->maybe_world_file); + SafeOFStream f(*_imp->maybe_world_file, -1, true); } catch (const SafeOFStreamError & e) { |