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

@@ -59,7 +59,7 @@ LedgerEntryFormat* getLgrFormat(LedgerEntryType t)
while(f->t_name != NULL)
{
if(f->t_type == t) return f;
f++;
++f;
}
return NULL;
}

View File

@@ -59,7 +59,7 @@ TransactionFormat* getTxnFormat(TransactionType t)
while(f->t_name != NULL)
{
if(f->t_type == t) return f;
f++;
++f;
}
return NULL;
}