summaryrefslogtreecommitdiff
path: root/xts5/src/lib/rpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'xts5/src/lib/rpt.c')
-rw-r--r--xts5/src/lib/rpt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xts5/src/lib/rpt.c b/xts5/src/lib/rpt.c
index d74053a3..bbf49ade 100644
--- a/xts5/src/lib/rpt.c
+++ b/xts5/src/lib/rpt.c
@@ -163,7 +163,7 @@ va_list args;
if (mess && *mess) {
- (void) vsprintf(buf, mess, args);
+ vsprintf(buf, mess, args);
report(buf);
} else
report("Test unsupported");
@@ -196,7 +196,7 @@ va_list args;
if (mess && *mess) {
- (void) vsprintf(buf, mess, args);
+ vsprintf(buf, mess, args);
report(buf);
} else
report("Test not in use");
@@ -229,7 +229,7 @@ va_list args;
if (mess && *mess) {
- (void) vsprintf(buf, mess, args);
+ vsprintf(buf, mess, args);
report(buf);
} else
report("Test is untested");