aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PropSet.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-04-01 02:01:28 +0000
committernyamatongwe <devnull@localhost>2000-04-01 02:01:28 +0000
commitdda4ea2c804522c57e6dc2e4ae1ab1bb8b0ac073 (patch)
treea4a8d14a669ffe05bef03dc47f76262bc25b2e41 /src/PropSet.cxx
parenta54fa180f65c6664ecd707cd9953f0781eaefed6 (diff)
downloadscintilla-mirror-dda4ea2c804522c57e6dc2e4ae1ab1bb8b0ac073.tar.gz
Fixed warnings from Borland compiler.
Diffstat (limited to 'src/PropSet.cxx')
-rw-r--r--src/PropSet.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PropSet.cxx b/src/PropSet.cxx
index 8582105ea..101b7f563 100644
--- a/src/PropSet.cxx
+++ b/src/PropSet.cxx
@@ -39,7 +39,7 @@ static bool GetFullLine(const char *&fpc, int &lenData, char *s, int len) {
fpc++;
lenData--;
}
- *s++ = '\0';
+ *s = '\0';
return true;
}
} else if ((ch == '\\') && (lenData > 0) && ((*fpc == '\r') || (*fpc == '\n'))) {