diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-02 15:44:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-02 15:44:49 +0200 |
commit | 137df0bea6cebabe5278e67e5dad6f3047c762fb (patch) | |
tree | 2ea23a35f99d21a4d9eca89ed71ac9ba2a734f52 /build/algorithm.cxx | |
parent | 65dca85d0acc1ae69518e85b52a2877e38dc8c6d (diff) |
Handle "nothing to be done" case for disfigure
Diffstat (limited to 'build/algorithm.cxx')
-rw-r--r-- | build/algorithm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/algorithm.cxx b/build/algorithm.cxx index d649210..87e2259 100644 --- a/build/algorithm.cxx +++ b/build/algorithm.cxx @@ -328,7 +328,7 @@ namespace build // file& ft (dynamic_cast<file&> (t)); - bool r (rmfile (ft.path (), ft) == rmfile_status::success); + bool r (rmfile (ft.path (), ft)); // Update timestamp in case there are operations after us that // could use the information. |