Style cleanup: "foo &x", not "foo& x"

This commit is contained in:
Geoffrey Thomas
2013-08-03 17:34:48 -07:00
committed by John Hood
parent 9e9919c941
commit aeffb71cfc
7 changed files with 17 additions and 17 deletions
+3 -3
View File
@@ -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() );
}