summaryrefslogtreecommitdiff
path: root/libs/ardour/uri_map.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/uri_map.cc')
-rw-r--r--libs/ardour/uri_map.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/uri_map.cc b/libs/ardour/uri_map.cc
index 116236a8b6..9b5843a40e 100644
--- a/libs/ardour/uri_map.cc
+++ b/libs/ardour/uri_map.cc
@@ -61,7 +61,7 @@ URIMap::uri_to_id(const char* map,
} else {
if (_global_to_event.size() + 1 > UINT16_MAX) {
PBD::error << "Event URI " << uri << " ID out of range." << endl;
- return NULL;
+ return 0;
}
const uint16_t ev_id = _global_to_event.size() + 1;
assert(_event_to_global.find(ev_id) == _event_to_global.end());