diff options
author | nyamatongwe <unknown> | 2000-04-01 02:01:28 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-04-01 02:01:28 +0000 |
commit | 0e6e05226f69f7bdd5fe4415a43be5be882b414c (patch) | |
tree | a4a8d14a669ffe05bef03dc47f76262bc25b2e41 /src/PropSet.cxx | |
parent | c7b2ff7108860ebc5c8bd56f435ca31b3b4c4065 (diff) | |
download | scintilla-mirror-0e6e05226f69f7bdd5fe4415a43be5be882b414c.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'))) { |