aboutsummaryrefslogtreecommitdiffhomepage
path: root/mimedb.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-01 14:56:34 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-01 14:56:34 -0800
commitfd4df6f9bb918d62ae31881230f2d5f8b09e129e (patch)
treebf1e86c4dae93eaec67d6f64d6587c30cdb672f3 /mimedb.cpp
parent5d18d60e3b9f9f4d6e12f14e8c68b147429b9fb3 (diff)
Changed iterators from iter++ to ++iter
Large set of changes to history to ensure that histories from other sessions don't "bleed" into the current session
Diffstat (limited to 'mimedb.cpp')
-rw-r--r--mimedb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mimedb.cpp b/mimedb.cpp
index 9e1e4af1..2639013f 100644
--- a/mimedb.cpp
+++ b/mimedb.cpp
@@ -1424,7 +1424,7 @@ int main (int argc, char *argv[])
*/
if( output_type == LAUNCH && !error )
{
- for( launch_hash_t::iterator iter = launch_hash.begin(); iter != launch_hash.end(); iter++)
+ for( launch_hash_t::iterator iter = launch_hash.begin(); iter != launch_hash.end(); ++iter)
{
const char *mimetype = iter->first.c_str();
string_list_t &files = iter->second;