diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2021-07-06 18:15:36 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2021-07-06 18:15:36 +0200 |
commit | 70b1fdee9277eacaf2962e428f3bc46fe69a1931 (patch) | |
tree | 574174489278f8b7e5201ff9992dfe1bf88b7f9c | |
parent | ee6016a10e63c3e121ffe0275af3902307f17364 (diff) |
sfeed: printtrimmed function does not change or modify the buffer
Make it const char *.
-rw-r--r-- | sfeed.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -336,7 +336,7 @@ string_print_encoded(String *s) } static void -printtrimmed(char *s) +printtrimmed(const char *s) { char *p, *e; |