summaryrefslogtreecommitdiff
path: root/src/gnucash.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnucash.cc')
-rw-r--r--src/gnucash.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gnucash.cc b/src/gnucash.cc
index ed3a8457..a1fa40a3 100644
--- a/src/gnucash.cc
+++ b/src/gnucash.cc
@@ -55,14 +55,14 @@ static amount_t curr_quant;
static XML_Parser current_parser;
static accounts_map accounts_by_id;
static account_comm_map account_comms;
-static unsigned int count;
+static std::size_t count;
static string have_error;
static std::istream * instreamp;
-static unsigned int offset;
+static std::size_t offset;
static XML_Parser parser;
static path pathname;
-static unsigned int src_idx;
+static std::size_t src_idx;
static istream_pos_type beg_pos;
static unsigned long beg_line;
@@ -376,11 +376,11 @@ bool gnucash_parser_t::test(std::istream& in) const
return true;
}
-unsigned int gnucash_parser_t::parse(std::istream& in,
- session_t& session,
- journal_t& journal,
- account_t * master,
- const path * original_file)
+std::size_t gnucash_parser_t::parse(std::istream& in,
+ session_t& session,
+ journal_t& journal,
+ account_t * master,
+ const path * original_file)
{
#if 0
char buf[BUFSIZ];