Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
personality.c: make use of RVAL_DECODED
Browse files Browse the repository at this point in the history
* personality.c (sys_personality): Update for RVAL_DECODED.
  • Loading branch information
ldv-alt committed Jul 18, 2015
1 parent a528eb5 commit ada8432
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions personality.c
Expand Up @@ -6,7 +6,7 @@

SYS_FUNC(personality)
{
if (entering(tcp))
printxval(personality_options, tcp->u_arg[0], "PER_???");
return 0;
printxval(personality_options, tcp->u_arg[0], "PER_???");

return RVAL_DECODED;
}

0 comments on commit ada8432

Please sign in to comment.