diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-02-28 13:53:28 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-02-28 14:11:19 +0100 |
commit | 944e10700c98f8ac71c2385fd96671167463fcf0 (patch) | |
tree | 92f215b977ee049b757b02cc8b398de644197222 /rfc2047e.c | |
parent | e2baa1aa1cc0ec28d716228f150d29c632e57ade (diff) | |
download | fetchmail-944e10700c98f8ac71c2385fd96671167463fcf0.tar.gz fetchmail-944e10700c98f8ac71c2385fd96671167463fcf0.tar.bz2 fetchmail-944e10700c98f8ac71c2385fd96671167463fcf0.zip |
Remove unused assignments/initializations found with llvm-clang.
Diffstat (limited to 'rfc2047e.c')
-rw-r--r-- | rfc2047e.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -174,7 +174,7 @@ char *rfc2047e(const char *string, const char *charset) { if (i + 1 < count) m += strcspn(words[i+1], "\r\n"); if (l + m > 74) - l = 0, t = stpcpy(t, "\r\n"); + t = stpcpy(t, "\r\n"); t = stpcpy(t, words[i]); if (i + 1 < count) { t = stpcpy(t, words[i+1]); |