Kaydet (Commit) 346baad2 authored tarafından Caolán McNamara's avatar Caolán McNamara

fix debug build

Change-Id: I5199784c68d3c54dd661dda0f8a61e8ea68e884e
üst 8ba7647a
...@@ -101,7 +101,7 @@ meta_action_name(MetaActionType nMetaAction) ...@@ -101,7 +101,7 @@ meta_action_name(MetaActionType nMetaAction)
// Yes, return a pointer to a static buffer. This is a very // Yes, return a pointer to a static buffer. This is a very
// local debugging output function, so no big deal. // local debugging output function, so no big deal.
static char buffer[6]; static char buffer[6];
sprintf(buffer, "%u", nMetaAction); sprintf(buffer, "%u", static_cast<unsigned int>(nMetaAction));
return buffer; return buffer;
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment