summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/textual.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textual.cc b/src/textual.cc
index 156e2b9c..b113c746 100644
--- a/src/textual.cc
+++ b/src/textual.cc
@@ -1816,7 +1816,7 @@ xact_t * instance_t::parse_xact(char * line,
char *q = p - 1;
while (q > next && std::isspace(*q))
--q;
- if (q > next)
+ if (q >= next)
*(q + 1) = '\0';
break;
}