Fix patch to actually correct the real error here.
This commit is contained in:
parent
efdaefde39
commit
eda1e6c2c7
2 changed files with 6 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
|||
$NetBSD: distinfo,v 1.3 2018/06/02 16:46:50 jmcneill Exp $
|
||||
$NetBSD: distinfo,v 1.4 2018/06/02 21:00:03 joerg Exp $
|
||||
|
||||
SHA1 (slim-1.3.6.tar.gz) = 9407ea2ee7b2ed649f17a8ddbf1f7b26a7c7b9fb
|
||||
RMD160 (slim-1.3.6.tar.gz) = 1bf3269b23275c50b67ada8cb5709e093eb6764f
|
||||
SHA512 (slim-1.3.6.tar.gz) = 345b1dee5d6f0c3716dfa7c5c16274adbf18586bdaaa6af4f310e24c5a61f79a297ffac921a5ba545523317e9fe120916df226c36b9c9b49c2ac9c1ca21dee0c
|
||||
Size (slim-1.3.6.tar.gz) = 232547 bytes
|
||||
SHA1 (patch-CMakeLists.txt) = 27f0222a206465e12f22f78e418b1615f7825cd4
|
||||
SHA1 (patch-panel.cpp) = 38ae847eb34f90ee7ca5c23daf515067e5c3b844
|
||||
SHA1 (patch-panel.cpp) = 51f87c90214cbc55fd5628f7d852d6287d763903
|
||||
SHA1 (patch-slim.conf) = c85fb8f14e02e602f1dd5a72ffa20de7a34e5a13
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
$NetBSD: patch-panel.cpp,v 1.1 2018/06/02 16:46:50 jmcneill Exp $
|
||||
$NetBSD: patch-panel.cpp,v 1.2 2018/06/02 21:00:03 joerg Exp $
|
||||
|
||||
XCreateGC returns a null pointer on failure, not a negative value.
|
||||
|
||||
--- panel.cpp.orig 2013-10-01 22:38:05.000000000 +0000
|
||||
+++ panel.cpp
|
||||
|
@ -7,7 +9,7 @@ $NetBSD: patch-panel.cpp,v 1.1 2018/06/02 16:46:50 jmcneill Exp $
|
|||
gcv.graphics_exposures = False;
|
||||
WinGC = XCreateGC(Dpy, Win, gcm, &gcv);
|
||||
- if (WinGC < 0) {
|
||||
+ if ((intptr_t)WinGC < 0) {
|
||||
+ if (!WinGC) {
|
||||
cerr << APPNAME
|
||||
<< ": failed to create pixmap\n.";
|
||||
exit(ERR_EXIT);
|
||||
|
|
Loading…
Reference in a new issue