whitespace fix

This commit is contained in:
James F. Carter
2016-10-05 11:06:39 +01:00
parent a6710b6c32
commit a09e14b2d4

View File

@@ -173,7 +173,7 @@ START_TEST(test_reply_handle)
memcpy( reply_raw.handle.b, "MYHANDLE", 8 ); memcpy( reply_raw.handle.b, "MYHANDLE", 8 );
nbd_r2h_reply( &reply_raw, &reply ); nbd_r2h_reply( &reply_raw, &reply );
reply_raw.handle.w = 0; reply_raw.handle.w = 0;
nbd_h2r_reply( &reply, &reply_raw ); nbd_h2r_reply( &reply, &reply_raw );
fail_unless( memcmp( reply.handle.b, "MYHANDLE", 8 ) == 0, "The handle was not copied." ); fail_unless( memcmp( reply.handle.b, "MYHANDLE", 8 ) == 0, "The handle was not copied." );