From 283e3e1af6faf3d18be2bdc2ae808519713384d7 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Sun, 12 Aug 2012 23:21:00 +0000 Subject: [PATCH] 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 --- src/gnome/assistant-loan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gnome/assistant-loan.c b/src/gnome/assistant-loan.c index f0d07a88c0..16b94d9239 100644 --- a/src/gnome/assistant-loan.c +++ b/src/gnome/assistant-loan.c @@ -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;