summaryrefslogtreecommitdiff
path: root/xts5/src/bin/mc/shortname.c
diff options
context:
space:
mode:
Diffstat (limited to 'xts5/src/bin/mc/shortname.c')
-rw-r--r--xts5/src/bin/mc/shortname.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/xts5/src/bin/mc/shortname.c b/xts5/src/bin/mc/shortname.c
index 1ba22b1a..ed394d61 100644
--- a/xts5/src/bin/mc/shortname.c
+++ b/xts5/src/bin/mc/shortname.c
@@ -150,23 +150,23 @@ int n;
cp = strinstr(name, "Background");
if (cp) {
- (void) strcpy(cp, "Bg");
- (void) strcpy(cp+2, cp+10);
+ strcpy(cp, "Bg");
+ strcpy(cp+2, cp+10);
}
cp = strinstr(name, "Subwindow");
if (cp) {
- (void) strcpy(cp, "Sbw");
- (void) strcpy(cp+3, cp+9);
+ strcpy(cp, "Sbw");
+ strcpy(cp+3, cp+9);
}
cp = strinstr(name, "String");
if (cp) {
- (void) strcpy(cp, "Str");
- (void) strcpy(cp+3, cp+6);
+ strcpy(cp, "Str");
+ strcpy(cp+3, cp+6);
}
cp = strinstr(name, "Window");
if (cp) {
- (void) strcpy(cp, "Wdw");
- (void) strcpy(cp+3, cp+6);
+ strcpy(cp, "Wdw");
+ strcpy(cp+3, cp+6);
}
/*