make run return and that is what the binary exits with

This commit is contained in:
Eliot Horowitz
2009-01-29 11:56:44 -05:00
parent c55e976c0d
commit d02aa49e35
4 changed files with 6 additions and 7 deletions

View File

@@ -38,8 +38,9 @@ public:
addPositionArg( "dir" , 1 );
}
void run(){
int run(){
drillDown( getParam( "dir" ) );
return 0;
}
void drillDown( path root ) {