diff options
author | Nathan Jones <nathanj@insightbb.com> | 2009-07-10 20:09:11 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-07-13 13:34:46 +0100 |
commit | 9592bac00d9506e5e6d7571228d8604ef5cf1a99 (patch) | |
tree | 05113fceee42866b59fde02409c4e384fbe45adc /option.cc | |
parent | a5d69b6d076f55ad90a0995c00f20560bf8fb1ab (diff) | |
download | fork-ledger-9592bac00d9506e5e6d7571228d8604ef5cf1a99.tar.gz fork-ledger-9592bac00d9506e5e6d7571228d8604ef5cf1a99.tar.bz2 fork-ledger-9592bac00d9506e5e6d7571228d8604ef5cf1a99.zip |
Compilation fixes for gcc 4.4
Diffstat (limited to 'option.cc')
-rw-r--r-- | option.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -892,7 +892,7 @@ OPT_BEGIN(market, "V") { namespace { void parse_price_setting(const char * optarg) { - char * equals = std::strchr(optarg, '='); + const char * equals = std::strchr(optarg, '='); if (! equals) return; |