From 411315fef4af72fbc56066ec375ad4c28ad6813d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Mon, 25 Jun 2012 14:10:56 +0000 Subject: [PATCH] Boost Jam code cleanup - minor stylistic execnt.c module change. [SVN r79080] --- src/engine/execnt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/execnt.c b/src/engine/execnt.c index acf7c0343..e13537a54 100644 --- a/src/engine/execnt.c +++ b/src/engine/execnt.c @@ -76,7 +76,7 @@ DWORD get_process_id( HANDLE ); /* terminate the given process, after terminating all its children first */ static void kill_process_tree( DWORD, HANDLE ); /* waits for a command to complete or time out */ -static int try_wait( int timeoutMillis ); +static int try_wait( int const timeoutMillis ); /* reads any pending output for running commands */ static void read_output(); /* checks if a command ran out of time, and kills it */ @@ -849,7 +849,7 @@ static void read_output() * cmdtab array, or -1. */ -static int try_wait( int timeoutMillis ) +static int try_wait( int const timeoutMillis ) { int i; int num_active;