Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
Minor codestyle correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kline- committed May 17, 2014
1 parent 37f2cc4 commit 606b820
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c++/nzedbup/nzedbup.cpp
Expand Up @@ -57,7 +57,7 @@ int main( const int argc, char* argv[] )

for ( ; ; )
{
::sleep( 10 );
sleep( 10 );
}

return 0;
Expand All @@ -81,7 +81,7 @@ void* process_request( void* input )
ThreadData* data = static_cast<ThreadData*>( input );

system( data->args.c_str() );
::sleep( data->sleep );
sleep( data->sleep );
spawn_thread( data );

return 0;
Expand Down

0 comments on commit 606b820

Please sign in to comment.