summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-05-15 09:51:09 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-05-15 09:51:09 +0100
commit346baad24a7c3795ce134092913c9aa31cddfdfd (patch)
tree521c9f1328dd0eb9f8425d40b0ffc051336c649c /vcl
parent8ba7647aba605ee7025ef9f301c2c9d8eb1c515f (diff)
fix debug build
Change-Id: I5199784c68d3c54dd661dda0f8a61e8ea68e884e
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/metaact.cxx2
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