summaryrefslogtreecommitdiff
path: root/utils/hwstub/tools/hwstub_shell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/hwstub/tools/hwstub_shell.cpp')
-rw-r--r--utils/hwstub/tools/hwstub_shell.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/hwstub/tools/hwstub_shell.cpp b/utils/hwstub/tools/hwstub_shell.cpp
index 88cb1231fb..4cd5953a50 100644
--- a/utils/hwstub/tools/hwstub_shell.cpp
+++ b/utils/hwstub/tools/hwstub_shell.cpp
@@ -74,12 +74,12 @@ void print_context(const std::string& file, const soc_desc::error_context_t& ctx
74{ 74{
75 for(size_t j = 0; j < ctx.count(); j++) 75 for(size_t j = 0; j < ctx.count(); j++)
76 { 76 {
77 soc_desc::error_t e = ctx.get(j); 77 soc_desc::err_t e = ctx.get(j);
78 switch(e.level()) 78 switch(e.level())
79 { 79 {
80 case soc_desc::error_t::INFO: printf("[INFO]"); break; 80 case soc_desc::err_t::INFO: printf("[INFO]"); break;
81 case soc_desc::error_t::WARNING: printf("[WARN]"); break; 81 case soc_desc::err_t::WARNING: printf("[WARN]"); break;
82 case soc_desc::error_t::FATAL: printf("[FATAL]"); break; 82 case soc_desc::err_t::FATAL: printf("[FATAL]"); break;
83 default: printf("[UNK]"); break; 83 default: printf("[UNK]"); break;
84 } 84 }
85 if(e.location().size() != 0) 85 if(e.location().size() != 0)