From 043a1446e13b59f5824eb7aa0626baf6387976b0 Mon Sep 17 00:00:00 2001 From: Moritz Kobitzsch Date: Thu, 30 Jun 2016 10:39:05 +0200 Subject: [PATCH] adjust changelog (mention both files) and update a typo --- CHANGELOG.md | 2 +- src/storage/storage.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 803ca9e59..bf6c92fa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ - Infrastructure - BREAKING: The new turn type changes the turn-type order. This breaks the **data format**. - - BREAKING: Turn lane data introduces a new file (osrm.tld). This breaks the fileformat for older versions. + - BREAKING: Turn lane data introduces two new files (osrm.tld,osrm.tls). This breaks the fileformat for older versions. # 5.2.5 - Bugfixes diff --git a/src/storage/storage.cpp b/src/storage/storage.cpp index 0eee10598..5f245cd4c 100644 --- a/src/storage/storage.cpp +++ b/src/storage/storage.cpp @@ -152,7 +152,7 @@ int Storage::Run() if (!util::deserializeAdjacencyArray(config.turn_lane_description_path.string(), lane_description_offsets, lane_description_masks)) - throw util::exception("Could not open read lane descriptions from: " + + throw util::exception("Failed to read lane descriptions from: " + config.turn_lane_description_path.string()); shared_layout_ptr->SetBlockSize(SharedDataLayout::LANE_DESCRIPTION_OFFSETS, lane_description_offsets.size());