diff options
author | corvid <corvid@lavabit.com> | 2011-04-04 17:56:15 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-04-04 17:56:15 +0000 |
commit | 9572807453da1e92657df7b88eb8a5e0f578d21c (patch) | |
tree | 626f378dd4594fcd6b2d7b4dac4274051417a6e5 /dw/fltkimgbuf.cc | |
parent | da2887c4a786ffdb97ce89fa257ef9818b53285c (diff) |
clearer MSG for suspicious image size
I saw a MSG with size 0x[something], and of course I thought it was
complaining that a size was given in hex notation.
Diffstat (limited to 'dw/fltkimgbuf.cc')
-rw-r--r-- | dw/fltkimgbuf.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/fltkimgbuf.cc b/dw/fltkimgbuf.cc index 6ba7ff1d..e3be41a9 100644 --- a/dw/fltkimgbuf.cc +++ b/dw/fltkimgbuf.cc @@ -193,7 +193,7 @@ core::Imgbuf* FltkImgbuf::getScaledBuf (int width, int height) */ if (width <= 0 || height <= 0 || width > IMAGE_MAX_AREA / height) { - MSG("FltkImgbuf::getScaledBuf: suspicious image size request %dx%d\n", + MSG("FltkImgbuf::getScaledBuf: suspicious image size request %d x %d\n", width, height); ref (); return this; |