From c35e4a4b7d7c4da06f0f38f6f669f05d04f4537a Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Wed, 12 Feb 2014 13:13:07 +0100 Subject: Fix red Change-Id: Ib64eb3539e33d4336c298612b4508c4611b80c9e --- utils/hwstub/tools/hwstub_shell.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'utils/hwstub') diff --git a/utils/hwstub/tools/hwstub_shell.cpp b/utils/hwstub/tools/hwstub_shell.cpp index 3cc6f8c259..61cb617509 100644 --- a/utils/hwstub/tools/hwstub_shell.cpp +++ b/utils/hwstub/tools/hwstub_shell.cpp @@ -647,13 +647,13 @@ bool my_lua_import_soc(const soc_t& soc) return true; } -bool my_lua_import_soc(const std::list< soc_t >& socs) +bool my_lua_import_soc(const std::vector< soc_t >& socs) { - for(std::list< soc_t >::const_iterator it = socs.begin(); it != socs.end(); ++it) + for(size_t i = 0; i < socs.size(); i++) { if(!g_quiet) - printf("importing %s...\n", it->name.c_str()); - if(!my_lua_import_soc(*it)) + printf("importing %s...\n", socs[i].name.c_str()); + if(!my_lua_import_soc(socs[i])) return false; } return true; @@ -711,7 +711,7 @@ int main(int argc, char **argv) } // load register descriptions - std::list< soc_t > socs; + std::vector< soc_t > socs; for(int i = optind; i < argc; i++) if(!soc_desc_parse_xml(argv[i], socs)) { -- cgit v1.2.3