diff options
| author | Alexander Stohr <alexander.stohr@gmx.de> | 2004-03-30 16:48:12 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-03-30 16:48:12 -0800 |
| commit | 96531b3706a5d1e84f138ce45afb3d003f6adade (patch) | |
| tree | bba8650dc2028831035e3c2e75a47ee288bdd02c /kernel/exec_domain.c | |
| parent | fe6a9c2179b19c03fbaba00df4e441a07197d3c2 (diff) | |
[PATCH] double semicolon cleanup
This cleans up a larger amount of superfluos ";;" statements in current
Linux kernel sources by converting them to the regular single ";"
statments.
It seems to be a common problem that at the end of a line the semicolon
key is producing an echo.
Diffstat (limited to 'kernel/exec_domain.c')
| -rw-r--r-- | kernel/exec_domain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/exec_domain.c b/kernel/exec_domain.c index 77664a9f6a64..a5686ae5dc72 100644 --- a/kernel/exec_domain.c +++ b/kernel/exec_domain.c @@ -170,7 +170,7 @@ __set_personality(u_long personality) fsp = copy_fs_struct(current->fs); if (fsp == NULL) { module_put(ep->module); - return -ENOMEM;; + return -ENOMEM; } task_lock(current); @@ -213,7 +213,7 @@ get_exec_domain_list(char *page) asmlinkage long sys_personality(u_long personality) { - u_long old = current->personality;; + u_long old = current->personality; if (personality != 0xffffffff) { set_personality(personality); |
