Cosmetic changes.

This commit is contained in:
JoelKatz
2012-05-15 16:21:21 -07:00
parent cb4fcfddac
commit 0936bd9ec7
2 changed files with 8 additions and 8 deletions

View File

@@ -55,11 +55,11 @@ TransactionFormat InnerTxnFormats[]=
TransactionFormat* getTxnFormat(TransactionType t)
{
TransactionFormat* f=InnerTxnFormats;
while(f->t_name!=NULL)
TransactionFormat* f = InnerTxnFormats;
while(f->t_name != NULL)
{
if(f->t_type==t) return f;
f++;
if(f->t_type == t) return f;
++f;
}
return NULL;
}