From fd7b9ad55e58d10b217f2e9e98e78de9965e9675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sat, 15 Sep 2007 09:03:01 +0000 Subject: [PATCH] Fix typo svn path=/trunk/; revision=29053 --- reactos/tools/rbuild/directory.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/reactos/tools/rbuild/directory.cpp b/reactos/tools/rbuild/directory.cpp index 981e6ccaf8d..5818421d461 100644 --- a/reactos/tools/rbuild/directory.cpp +++ b/reactos/tools/rbuild/directory.cpp @@ -167,13 +167,12 @@ Directory::GenerateTree ( const string& parent, if ( parent.size () > 0 ) { - char buf[256]; if ( name.size () > 0 ) path = parent + sSep + name; else path = parent; - if ( CreateDirectory ( buf ) && verbose ) - printf ( "Created %s\n", buf ); + if ( CreateDirectory ( path ) && verbose ) + printf ( "Created %s\n", path.c_str () ); } else path = name;