Skip to content

Commit

Permalink
Fix compiler warning about 'static' not being first in a declaration
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22307 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
jralls committed Aug 12, 2012
1 parent e074ec9 commit 283e3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gnome/assistant-loan.c
Expand Up @@ -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;
Expand Down

0 comments on commit 283e3e1

Please sign in to comment.