summaryrefslogtreecommitdiff
path: root/src/asset.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-06-13 12:51:48 +0100
committerCarl Hetherington <cth@carlh.net>2014-06-13 12:51:48 +0100
commit7bca4c05ca38b218c252b0fe98a866806d9a2ded (patch)
tree959c021c95049e3a064f3a7b377d26d78c9cc4a3 /src/asset.cc
parent4c8229e08772f498f1ece36fff51c0be8cf3636c (diff)
Work around symbol clash with ERROR on Win32/mingw.
Diffstat (limited to 'src/asset.cc')
-rw-r--r--src/asset.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asset.cc b/src/asset.cc
index 6bf8fec5..80b01082 100644
--- a/src/asset.cc
+++ b/src/asset.cc
@@ -106,7 +106,7 @@ bool
Asset::equals (boost::shared_ptr<const Asset> other, EqualityOptions, function<void (NoteType, string)> note) const
{
if (_hash != other->_hash) {
- note (ERROR, "Asset hashes differ");
+ note (DCP_ERROR, "Asset hashes differ");
return false;
}