|
Boost-Commit : |
From: ghost_at_[hidden]
Date: 2007-10-09 01:35:49
Author: vladimir_prus
Date: 2007-10-09 01:35:48 EDT (Tue, 09 Oct 2007)
New Revision: 39829
URL: http://svn.boost.org/trac/boost/changeset/39829
Log:
Make it compile, even
Text files modified:
trunk/tools/jam/src/builtins.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
Modified: trunk/tools/jam/src/builtins.c
==============================================================================
--- trunk/tools/jam/src/builtins.c (original)
+++ trunk/tools/jam/src/builtins.c 2007-10-09 01:35:48 EDT (Tue, 09 Oct 2007)
@@ -1337,7 +1337,8 @@
/* Convert \ into /. On windows, paths using / and \ are equivalent,
and we want this function to obtain canonic representation. */
- for (current = in->value, end = in->value + in_size; current < end; ++current)
+ for (current = in->value, end = in->value + in->size;
+ current < end; ++current)
if (*current = '\\')
* current = '/';
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk