GP-4202 corrected ELF PT_NOTE processing issue

This commit is contained in:
ghidra1 2023-11-14 18:42:03 -05:00
parent 86da74d01a
commit 68dc53768c
2 changed files with 58 additions and 38 deletions

View file

@ -38,7 +38,7 @@ public class Relocation {
UNKNOWN(0, true),
/**
* Relocation has be intentionally skipped and should not be treated as a failure.
* Relocation has been intentionally skipped and should not be treated as a failure.
*/
SKIPPED(1, false),
@ -105,8 +105,7 @@ public class Relocation {
return s;
}
}
throw new IllegalArgumentException(
"Undefined Status value: " + value);
throw new IllegalArgumentException("Undefined Status value: " + value);
}
}