summaryrefslogtreecommitdiff
path: root/xdmshell.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2006-07-14 15:11:08 -0700
committerAlan Coopersmith <alanc@alf.(none)>2006-07-14 15:11:08 -0700
commit2094955be1ef94a0ba3f7dcf64ae04c9575dbd9c (patch)
treedfb7668beea258fefe12f06264d58eec2a0290a3 /xdmshell.c
parent1abe7027403ecf00b846c675fac27c2d86ebd9d4 (diff)
Use pid_t instead of int when working with fork/wait/etc. (clear more lint warnings)
Diffstat (limited to 'xdmshell.c')
-rw-r--r--xdmshell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xdmshell.c b/xdmshell.c
index 688ab4d..3dd1352 100644
--- a/xdmshell.c
+++ b/xdmshell.c
@@ -71,7 +71,7 @@ static int exec_args (
char *filename,
char **args)
{
- int pid;
+ pid_t pid;
waitType status;
if (!filename) return -1;