Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Remove const qualifier from syscall out-parameters #17382

Merged
merged 1 commit into from
May 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions sdk/bpf/c/inc/solana_sdk.h
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ typedef struct {
uint64_t sol_sha256(
const SolBytes *bytes,
int bytes_len,
const uint8_t *result
uint8_t *result
);

/**
Expand All @@ -454,7 +454,7 @@ uint64_t sol_sha256(
uint64_t sol_keccak256(
const SolBytes *bytes,
int bytes_len,
const uint8_t *result
uint8_t *result
);

/**
Expand Down Expand Up @@ -506,7 +506,7 @@ uint64_t sol_create_program_address(
const SolSignerSeed *seeds,
int seeds_len,
const SolPubkey *program_id,
const SolPubkey *program_address
SolPubkey *program_address
);

/**
Expand All @@ -522,8 +522,8 @@ uint64_t sol_try_find_program_address(
const SolSignerSeed *seeds,
int seeds_len,
const SolPubkey *program_id,
const SolPubkey *program_address,
const uint8_t *bump_seed
SolPubkey *program_address,
uint8_t *bump_seed
);

/**
Expand Down