Skip to content

Commit a5abe6f

Browse files
committed
Removed useless assign
1 parent 7a7fed7 commit a5abe6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compact_x25519.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ void compact_x25519_derive_encryption_key(
4848
uint8_t *p = key_data;
4949
p = append(p, shared_secret, X25519_SHARED_SIZE);
5050
p = append(p, public_key1, X25519_KEY_SIZE);
51-
p = append(p, public_key2, X25519_KEY_SIZE);
51+
append(p, public_key2, X25519_KEY_SIZE);
5252

5353
struct sha512_state hasher;
5454
sha512_init(&hasher);

0 commit comments

Comments
 (0)