diff options
Diffstat (limited to 'common/threads')
-rw-r--r-- | common/threads/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/threads/driver.cxx b/common/threads/driver.cxx index 9703e29..14ca172 100644 --- a/common/threads/driver.cxx +++ b/common/threads/driver.cxx @@ -62,7 +62,7 @@ struct task auto_ptr<object> o (db_.load<object> (id)); assert (o->str_ == "frist object"); o->str_ = "another value"; - db_.store (*o); + db_.update (*o); t.commit (); } |