summaryrefslogtreecommitdiff
path: root/xts5/Xproto/pCloseFont.m
diff options
context:
space:
mode:
Diffstat (limited to 'xts5/Xproto/pCloseFont.m')
-rw-r--r--xts5/Xproto/pCloseFont.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/xts5/Xproto/pCloseFont.m b/xts5/Xproto/pCloseFont.m
index e2a10f41..147f0d8c 100644
--- a/xts5/Xproto/pCloseFont.m
+++ b/xts5/Xproto/pCloseFont.m
@@ -143,18 +143,18 @@ tester()
switch(test_type) {
case GOOD:
Log_Trace("client %d sent default CloseFont request\n", CLIENT);
- (void) Expect_Nothing(CLIENT);
+ Expect_Nothing(CLIENT);
break;
case BAD_LENGTH:
Log_Trace("client %d sent CloseFont request with bad length (%d)\n", CLIENT, req->length);
- (void) Expect_BadLength(CLIENT);
- (void) Expect_Nothing(CLIENT);
+ Expect_BadLength(CLIENT);
+ Expect_Nothing(CLIENT);
break;
case TOO_LONG:
case JUST_TOO_LONG:
Log_Trace("client %d sent overlong CloseFont request (%d)\n", CLIENT, req->length);
- (void) Expect_BadLength(CLIENT);
- (void) Expect_Nothing(CLIENT);
+ Expect_BadLength(CLIENT);
+ Expect_Nothing(CLIENT);
break;
default:
Log_Err("INTERNAL ERROR: test_type %d not one of GOOD(%d), BAD_LENGTH(%d), TOO_LONG(%d) or JUST_TOO_LONG(%d)\n",