diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2012-11-10 14:15:56 +0000 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2015-11-10 11:40:07 +0000 |
commit | 655797c52265a55b733bd61c57439abbcc5f56e5 (patch) | |
tree | 383a6db67618d88cea4c48ddcf30e93ef9178386 /hw/xwin/wmutil | |
parent | 60eca1eed98695b53938a0188e5519f774078222 (diff) |
Rename ErrorF()->winError() in icon_convert.c
v2: Add prototype for winError()
Diffstat (limited to 'hw/xwin/wmutil')
-rw-r--r-- | hw/xwin/wmutil/icon_convert.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/xwin/wmutil/icon_convert.c b/hw/xwin/wmutil/icon_convert.c index 841b03ffc..be9f4e027 100644 --- a/hw/xwin/wmutil/icon_convert.c +++ b/hw/xwin/wmutil/icon_convert.c @@ -80,8 +80,8 @@ winScaleXImageToWindowsIcon(int iconSize, xStride = pixmap->stride; if (stride == 0 || xStride == 0) { - ErrorF("winScaleXBitmapToWindows - stride or xStride is zero. " - "Bailing.\n"); + winError("winScaleXBitmapToWindows - stride or xStride is zero. " + "Bailing.\n"); return; } @@ -352,8 +352,8 @@ NetWMToWinIcon(int bpp, uint32_t * icon) dwlConditionMask); versionChecked = TRUE; - ErrorF("OS has icon alpha channel support: %s\n", - hasIconAlphaChannel ? "yes" : "no"); + winError("OS has icon alpha channel support: %s\n", + hasIconAlphaChannel ? "yes" : "no"); } if (hasIconAlphaChannel && (bpp == 32)) |