aboutsummaryrefslogtreecommitdiffstats
path: root/ucs/norm_charmap.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-02-28 13:53:28 +0100
committerMatthias Andree <matthias.andree@gmx.de>2010-02-28 14:11:19 +0100
commit944e10700c98f8ac71c2385fd96671167463fcf0 (patch)
tree92f215b977ee049b757b02cc8b398de644197222 /ucs/norm_charmap.c
parente2baa1aa1cc0ec28d716228f150d29c632e57ade (diff)
downloadfetchmail-944e10700c98f8ac71c2385fd96671167463fcf0.tar.gz
fetchmail-944e10700c98f8ac71c2385fd96671167463fcf0.tar.bz2
fetchmail-944e10700c98f8ac71c2385fd96671167463fcf0.zip
Remove unused assignments/initializations found with llvm-clang.
Diffstat (limited to 'ucs/norm_charmap.c')
-rw-r--r--ucs/norm_charmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucs/norm_charmap.c b/ucs/norm_charmap.c
index 2905e226..f00dcc26 100644
--- a/ucs/norm_charmap.c
+++ b/ucs/norm_charmap.c
@@ -84,7 +84,7 @@ const char *norm_charmap(const char *name)
p += 5;
if (digit(*p)) {
buf[9] = *p++;
- if (digit(*p)) buf[10] = *p++;
+ if (digit(*p)) buf[10] = *p;
return buf;
}
}
@@ -95,7 +95,7 @@ const char *norm_charmap(const char *name)
p += 4;
if (digit(*p)) {
buf[10] = *p++;
- if (digit(*p)) buf[11] = *p++;
+ if (digit(*p)) buf[11] = *p;
return buf;
}
}