diff options
author | comex | 2015-01-28 01:16:49 -0500 |
---|---|---|
committer | comex | 2015-01-28 01:16:49 -0500 |
commit | 12efdc925f1ba8ba0616736b5b5351aa82667ff9 (patch) | |
tree | f738857392fd79dacf33f4eac6aa16c09b913427 /ios-bootstrap/unrestrict-me.c | |
parent | some more stuff compiles (diff) | |
download | substitute-12efdc925f1ba8ba0616736b5b5351aa82667ff9.tar.gz |
sorta
Diffstat (limited to '')
-rw-r--r-- | ios-bootstrap/unrestrict-me.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ios-bootstrap/unrestrict-me.c b/ios-bootstrap/unrestrict-me.c index 718e9f8..a297471 100644 --- a/ios-bootstrap/unrestrict-me.c +++ b/ios-bootstrap/unrestrict-me.c @@ -22,9 +22,11 @@ int main(int argc, char **argv) { return 1; } - int sret = substitute_ios_unrestrict((pid_t) pid, should_resume[0] == '1'); + char *err = NULL; + int sret = substitute_ios_unrestrict((pid_t) pid, should_resume[0] == '1', &err); if (sret) { - syslog(LOG_EMERG, "unrestrict-me: substitute_ios_unrestrict => %d", sret); + syslog(LOG_EMERG, "unrestrict-me: substitute_ios_unrestrict => %d (%s)", + sret, err); return 1; } |