Skip to content

Commit 3266774

Browse files
Colin Ian Kingctmarinas
authored andcommitted
kselftest: arm64: fix spelling mistake "contiguos" -> "contiguous"
There is a spelling mistake in an error message literal string. Fix it. Fixes: f96bf43 ("kselftest: arm64: mangle_pstate_invalid_compat_toggle and common utils") Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Catalin Marinas <[email protected]>
1 parent f70c08e commit 3266774

File tree

1 file changed

+1
-1
lines changed
  • tools/testing/selftests/arm64/signal/testcases

1 file changed

+1
-1
lines changed

tools/testing/selftests/arm64/signal/testcases/testcases.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ bool validate_extra_context(struct extra_context *extra, char **err)
4343
else if (extra->size & 0x0fUL)
4444
*err = "Extra SIZE misaligned";
4545
else if (extra->datap != (uint64_t)term + sizeof(*term))
46-
*err = "Extra DATAP misplaced (not contiguos)";
46+
*err = "Extra DATAP misplaced (not contiguous)";
4747
if (*err)
4848
return false;
4949

0 commit comments

Comments
 (0)