summaryrefslogtreecommitdiff
path: root/src/burn/engine/condition.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/burn/engine/condition.cpp')
-rw-r--r--src/burn/engine/condition.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/condition.cpp b/src/burn/engine/condition.cpp
index b7cd7413..8fa62f16 100644
--- a/src/burn/engine/condition.cpp
+++ b/src/burn/engine/condition.cpp
@@ -525,7 +525,7 @@ static HRESULT NextSymbol(
525 while (L'\0' != pContext->wzRead[0]) 525 while (L'\0' != pContext->wzRead[0])
526 { 526 {
527 ::GetStringTypeW(CT_CTYPE1, pContext->wzRead, 1, &charType); 527 ::GetStringTypeW(CT_CTYPE1, pContext->wzRead, 1, &charType);
528 if (0 == (C1_BLANK & charType)) 528 if (0 == ((C1_BLANK | C1_SPACE) & charType))
529 { 529 {
530 break; // no blank, done 530 break; // no blank, done
531 } 531 }