JANITORIAL: Removed most punctuation at end of warning() and error()

Our warning() and error() functions always add an exclamation mark
to the end of the message anyway.

svn-id: r52791
This commit is contained in:
Torbjörn Andersson 2010-09-18 10:55:16 +00:00
parent 6fed6a75d5
commit c91a07229a
42 changed files with 58 additions and 58 deletions

View file

@ -518,7 +518,7 @@ void AgiEngine::loadDict() {
_predictiveDictLine = (char **)calloc(1, sizeof(char *) * lines);
if (_predictiveDictLine == NULL) {
warning("Cannot allocate memory for line index buffer.");
warning("Cannot allocate memory for line index buffer");
return;
}
_predictiveDictLine[0] = _predictiveDictText;