mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
Fix typo
svn path=/trunk/; revision=29053
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user