From: Jonas Fonseca Date: Sun, 21 Mar 2010 19:12:49 +0000 (-0400) Subject: io: fix comment in io struct X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a8d18eb70b31a36b73fca7f61a93111b4b8632c1;p=tig.git io: fix comment in io struct --- diff --git a/tig.c b/tig.c index e7f1599..4a07a51 100644 --- a/tig.c +++ b/tig.c @@ -532,7 +532,7 @@ enum io_type { struct io { enum io_type type; /* The requested type of pipe. */ const char *dir; /* Directory from which to execute. */ - pid_t pid; /* Pipe for reading or writing. */ + pid_t pid; /* PID of spawned process. */ int pipe; /* Pipe end for reading or writing. */ int error; /* Error status. */ const char *argv[SIZEOF_ARG]; /* Shell command arguments. */