Fix unitialized variable error in r23740.

Thanks to Herbert Thoma for the patch.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23746 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Mike Alexander 2014-01-22 23:36:48 +00:00
parent 4db833c08a
commit 9337a9be66

View File

@ -2076,7 +2076,7 @@ record_price (SplitRegister *reg, Account *account, gnc_numeric value)
static gboolean
gnc_split_register_auto_calc (SplitRegister *reg, Split *split)
{
PriceCell *cell;
PriceCell *cell = NULL;
gboolean recalc_shares = FALSE;
gboolean recalc_price = FALSE;
gboolean recalc_value = FALSE;