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
+2 -2
View File
@@ -72,7 +72,7 @@ void test_bad_decrypt( Session &decryption_session ) {
bool got_exn = false;
try {
decryption_session.decrypt( bad_ct );
} catch ( const CryptoException& e ) {
} catch ( const CryptoException &e ) {
got_exn = true;
/* The "bad decrypt" exception needs to be non-fatal, otherwise we are
@@ -142,7 +142,7 @@ int main( int argc, char *argv[] ) {
for ( size_t i=0; i<NUM_SESSIONS; i++ ) {
try {
test_one_session();
} catch ( const CryptoException& e ) {
} catch ( const CryptoException &e ) {
fprintf( stderr, "Crypto exception: %s\r\n",
e.what() );
fatal_assert( false );