summaryrefslogtreecommitdiff
path: root/src/content.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/content.cc')
-rw-r--r--src/content.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/content.cc b/src/content.cc
index 50db005a..007d5cbc 100644
--- a/src/content.cc
+++ b/src/content.cc
@@ -27,9 +27,6 @@
#include <boost/function.hpp>
#include <iostream>
-/* We need this here for the #undef ERROR for Windows */
-#include "types.h"
-
using namespace std;
using namespace boost;
using namespace dcp;
@@ -57,12 +54,12 @@ Content::equals (shared_ptr<const Content> other, EqualityOptions opt, boost::fu
}
if (_edit_rate != other->_edit_rate) {
- note (ERROR, "content edit rates differ");
+ note (DCP_ERROR, "content edit rates differ");
return false;
}
if (_intrinsic_duration != other->_intrinsic_duration) {
- note (ERROR, "asset intrinsic durations differ");
+ note (DCP_ERROR, "asset intrinsic durations differ");
return false;
}