creport: update for new-ipc

This commit is contained in:
Michael Scire 2019-10-17 19:48:28 -07:00 committed by SciresM
parent 799c158b86
commit 89c6fc6437
5 changed files with 29 additions and 27 deletions

View file

@ -53,7 +53,7 @@ namespace sts::creport {
}
}
u64 ParseProcessIdArgument(const char *s) {
os::ProcessId ParseProcessIdArgument(const char *s) {
/* Official creport uses this custom parsing logic... */
u64 out_val = 0;
@ -66,7 +66,7 @@ namespace sts::creport {
}
}
return out_val;
return os::ProcessId{out_val};
}
}