diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-08-29 01:32:15 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-08-29 01:32:15 +0200 |
commit | b382287567cc83196d461dacf6bde4b4a098690e (patch) | |
tree | be6f25aad7bf5954327f0316353d741bdc5dfeba /src/testing/test_bank_api_twisted.c | |
parent | d326c05e323501bc7917e0454d77d6e0e7938259 (diff) |
memset only sets 1 byte
Diffstat (limited to 'src/testing/test_bank_api_twisted.c')
-rw-r--r-- | src/testing/test_bank_api_twisted.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/test_bank_api_twisted.c b/src/testing/test_bank_api_twisted.c index 73e82bfc7..8ca98948d 100644 --- a/src/testing/test_bank_api_twisted.c +++ b/src/testing/test_bank_api_twisted.c @@ -84,7 +84,7 @@ run (void *cls, { struct TALER_WireTransferIdentifierRawP wtid; - memset (&wtid, 0x5aff, sizeof (wtid)); + memset (&wtid, 0x5a, sizeof (wtid)); /* Route our commands through twister. */ struct TALER_BANK_AuthenticationData exchange_auth_twisted; |