Style cleanup: "foo &x", not "foo& x"
This commit is contained in:
committed by
John Hood
parent
9e9919c941
commit
aeffb71cfc
@@ -175,13 +175,13 @@ int main( int argc, char *argv[] )
|
||||
}
|
||||
|
||||
client.shutdown();
|
||||
} catch ( const Network::NetworkException& e ) {
|
||||
} catch ( const Network::NetworkException &e ) {
|
||||
fprintf( stderr, "Network exception: %s\r\n",
|
||||
e.what() );
|
||||
} catch ( const Crypto::CryptoException& e ) {
|
||||
} catch ( const Crypto::CryptoException &e ) {
|
||||
fprintf( stderr, "Crypto exception: %s\r\n",
|
||||
e.what() );
|
||||
} catch ( const std::string& s ) {
|
||||
} catch ( const std::string &s ) {
|
||||
fprintf( stderr, "Error: %s\r\n", s.c_str() );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user