diff options
author | Guillaume Poussel <gpoussel@gmail.com> | 2011-01-04 22:40:36 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-01-05 09:02:33 +0100 |
commit | ed26218fdf5b0ba5a9a6c7611a5b787186185b8d (patch) | |
tree | a407b34648961b1e122faf52665975d056ca9a03 /guw | |
parent | d7d7b15e9434301a789c386bcc4aa0e87d690e4b (diff) |
Removing few cppchecks warnings.
Diffstat (limited to 'guw')
-rw-r--r-- | guw/guw.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guw/guw.cc b/guw/guw.cc index ef6e5eb93f9b..a3a2f86fe69f 100644 --- a/guw/guw.cc +++ b/guw/guw.cc @@ -290,7 +290,7 @@ void init_ignorepara(string fullcommand) { bool is_ignorepara(const string ¶) { for( vector<string>::iterator it = ignorepara_vec.begin(); - it != ignorepara_vec.end(); it++ ) { + it != ignorepara_vec.end(); ++it ) { if ( para.find(*it) != string::npos ) { if ( debug ) cerr << "Found execption para: " << para << endl; |