diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-15 09:51:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-15 09:51:09 +0100 |
commit | 346baad24a7c3795ce134092913c9aa31cddfdfd (patch) | |
tree | 521c9f1328dd0eb9f8425d40b0ffc051336c649c /vcl/source/gdi | |
parent | 8ba7647aba605ee7025ef9f301c2c9d8eb1c515f (diff) |
fix debug build
Change-Id: I5199784c68d3c54dd661dda0f8a61e8ea68e884e
Diffstat (limited to 'vcl/source/gdi')
-rw-r--r-- | vcl/source/gdi/metaact.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx index 604aaa9861ed..471fd9b4747a 100644 --- a/vcl/source/gdi/metaact.cxx +++ b/vcl/source/gdi/metaact.cxx @@ -101,7 +101,7 @@ meta_action_name(MetaActionType nMetaAction) // Yes, return a pointer to a static buffer. This is a very // local debugging output function, so no big deal. static char buffer[6]; - sprintf(buffer, "%u", nMetaAction); + sprintf(buffer, "%u", static_cast<unsigned int>(nMetaAction)); return buffer; } #endif |