From d79fbb3227fa8e216fd221ae4fe7b9a7888e8657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Tue, 26 Jun 2012 10:48:55 +0000 Subject: [PATCH] Boost Jam code cleanup - minor stylistic execunix.c module comment changes. [SVN r79105] --- src/engine/execunix.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/engine/execunix.c b/src/engine/execunix.c index ae1cdd7cf..60a6638a8 100644 --- a/src/engine/execunix.c +++ b/src/engine/execunix.c @@ -83,11 +83,11 @@ static struct int exit_reason; /* termination status */ int action_length; /* length of action string */ int target_length; /* length of target string */ - char * action; /* buffer to hold action and target invoked */ - char * target; /* buffer to hold action and target invoked */ - char * command; /* buffer to hold command being invoked */ - char * buffer[ 2 ]; /* buffer to hold stdout and stderr, if any */ - int buf_size[ 2 ]; /* size of buffer (bytes) */ + char * action; /* buffer to hold the action name (if not quiet) */ + char * target; /* buffer to hold the target name (if not quiet) */ + char * command; /* buffer to hold the command */ + char * buffer[ 2 ]; /* buffers to hold stdout and stderr, if any */ + int buf_size[ 2 ]; /* buffer sizes in bytes */ time_t start_dt; /* start of command timestamp */ /* Function called when the command completes. */