[NTOS]
[reactos.git] / reactos / ntoskrnl / ps / job.c
index dc279bc..3841364 100644 (file)
@@ -527,12 +527,12 @@ PsGetJobLock ( PEJOB Job )
 /*
  * @implemented
  */
-PVOID
+ULONG
 NTAPI
 PsGetJobSessionId ( PEJOB Job )
 {
     ASSERT(Job);
-    return (PVOID)Job->SessionId;
+    return Job->SessionId;
 }