Skip to content

Commit

Permalink
Merge 1ec832e into e484cb2
Browse files Browse the repository at this point in the history
  • Loading branch information
oluceps committed Jul 16, 2023
2 parents e484cb2 + 1ec832e commit 924efbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/wasm-bpf-rs/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl CallerUtils for Caller<'_, AppState> {
}

fn get_indirect_call_table(&mut self) -> anyhow::Result<Table> {
let table = self.get_export(INDIRECT_TABLE_NAME).with_context(||anyhow!("No export named `{}` found. And `--export-table` to you linker to emit such export.",INDIRECT_TABLE_NAME))?;
let table = self.get_export(INDIRECT_TABLE_NAME).with_context(||anyhow!("No export named `{}` found. Add `--export-table` to you linker to emit such export.",INDIRECT_TABLE_NAME))?;
let table = table.into_table().with_context(|| {
anyhow!(
"The type of export named `{}` is not table!",
Expand Down

0 comments on commit 924efbc

Please sign in to comment.