diff options
author | nyamatongwe <devnull@localhost> | 2000-04-01 02:01:28 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-04-01 02:01:28 +0000 |
commit | dda4ea2c804522c57e6dc2e4ae1ab1bb8b0ac073 (patch) | |
tree | a4a8d14a669ffe05bef03dc47f76262bc25b2e41 /src/PropSet.cxx | |
parent | a54fa180f65c6664ecd707cd9953f0781eaefed6 (diff) | |
download | scintilla-mirror-dda4ea2c804522c57e6dc2e4ae1ab1bb8b0ac073.tar.gz |
Fixed warnings from Borland compiler.
Diffstat (limited to 'src/PropSet.cxx')
-rw-r--r-- | src/PropSet.cxx | 2 |
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'))) { |