Fix compiler warning about 'static' not being first in a declaration

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22307 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
John Ralls 2012-08-12 23:21:00 +00:00
parent e074ec9955
commit 283e3e1af6

View File

@ -1775,7 +1775,7 @@ void
loan_rev_prep( GtkAssistant *assistant, gpointer user_data )
{
/* 3, here, does not include the Date column. */
const static int BASE_COLS = 3;
static const int BASE_COLS = 3;
LoanAssistantData *ldd = user_data;
GtkListStore *store;
GtkCellRenderer *renderer;