diff options
-rw-r--r-- | dw/hyphenator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/hyphenator.cc b/dw/hyphenator.cc index 819cc9b0..2811a818 100644 --- a/dw/hyphenator.cc +++ b/dw/hyphenator.cc @@ -244,7 +244,7 @@ bool Hyphenator::isCharPartOfActualWord (char *s) int *Hyphenator::hyphenateWord(core::Platform *platform, const char *word, int *numBreaks) { - if ((trie == NULL && exceptions ==NULL) || !isHyphenationCandidate (word)) { + if ((trie == NULL && exceptions == NULL) || !isHyphenationCandidate (word)) { *numBreaks = 0; return NULL; } |