diff options
| author | Marek Vasut <[email protected]> | 2023-05-31 00:53:19 +0200 |
|---|---|---|
| committer | Michal Simek <[email protected]> | 2023-06-12 13:24:31 +0200 |
| commit | 24d32e05cec97db33bfc9c647730e1627982bae7 (patch) | |
| tree | b3f57d6ad5dbd9f3c6d33a5260f6a3706671b564 | |
| parent | 1be82afa807cc3cfacab29e3de0975d2cd99fa5d (diff) | |
tools: relocate-rela: Fix typo
Position is written with one s, fix typo.
Signed-off-by: Marek Vasut <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Michal Simek <[email protected]>
| -rw-r--r-- | tools/relocate-rela.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/relocate-rela.c b/tools/relocate-rela.c index fe8cd6bda98..f230ec5676c 100644 --- a/tools/relocate-rela.c +++ b/tools/relocate-rela.c @@ -521,7 +521,7 @@ static int rela_elf32(char **argv, FILE *f) uint32_t pos = rela_start + sizeof(Elf32_Rela) * i; uint32_t addr, pos_dyn; - debug("\nPossition:\t%d/0x%x\n", i, pos); + debug("\nPosition:\t%d/0x%x\n", i, pos); if (fseek(f, pos, SEEK_SET) < 0) { fprintf(stderr, "%s: %s: seek to %" PRIx32 |
