From b88604175ce7e1a28a4e76c5f1f071e67569a69e Mon Sep 17 00:00:00 2001 From: Franck Dary <franck.dary@lis-lab.fr> Date: Mon, 21 Oct 2019 14:36:34 +0200 Subject: [PATCH] Fixed typo --- maca_common/src/Dict.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maca_common/src/Dict.cpp b/maca_common/src/Dict.cpp index 8def5df..902ad64 100644 --- a/maca_common/src/Dict.cpp +++ b/maca_common/src/Dict.cpp @@ -382,7 +382,7 @@ unsigned int Dict::addEntry(const std::string & s) if ((int)str2index.size() >= ProgramParameters::dictCapacity) { - fprintf(stderr, "ERROR (%s) : Dict %s of maximal capacity %d is full. Saving dict than aborting.\n", ERRINFO, name.c_str(), ProgramParameters::dictCapacity); + fprintf(stderr, "ERROR (%s) : Dict %s of maximal capacity %d is full. Saving dict then aborting.\n", ERRINFO, name.c_str(), ProgramParameters::dictCapacity); save(); exit(1); } -- GitLab