From a818ed0aab0951a3eacb90944f56bf8ee20e09e6 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Mon, 10 Mar 2014 17:02:17 -0400 Subject: [PATCH] Accidentally overwrote this commit of Vincent's. --- src/Author.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Author.cpp b/src/Author.cpp index fef6512aae..79e7de0864 100644 --- a/src/Author.cpp +++ b/src/Author.cpp @@ -116,7 +116,7 @@ void AuthorList::recordCurrentAuthor(Author const & a) Author const & AuthorList::get(int id) const { - LBUFERR(id < (int)authors_.size()); + LASSERT(id < (int)authors_.size() , return authors_[0]); return authors_[id]; } -- 2.39.2