aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/personality.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/personality.c')
-rw-r--r--sysdeps/unix/sysv/linux/personality.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/personality.c b/sysdeps/unix/sysv/linux/personality.c
index 5db07259e3..9620e0caff 100644
--- a/sysdeps/unix/sysv/linux/personality.c
+++ b/sysdeps/unix/sysv/linux/personality.c
@@ -28,7 +28,7 @@ __personality (unsigned long persona)
task_struct->pesonality is "unsigned int".
Starting with kernel commit v2.6.35-rc1-372-g485d527, the personality
syscall accepts "unsigned int" instead of "long unsigned int".
- Inbetween, a personality argument that does not fit into "unsigned int"
+ In between, a personality argument that does not fit into "unsigned int"
would result to system call returning -EINVAL.
We explicitly truncate the personality argument to "unsigned int"
to eliminate the uncertainty. */