From 677efb49e66dded5f3db56da9137d51531e1f1a2 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Tue, 25 Apr 2017 10:42:10 +0000 Subject: Let the unimplemented function XDrawSegments() return BadDrawable in stead of Success: It's only in the stub table since [a0883a07026127ef], before that the function was only internal and returned void. --- xlib/xgc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xlib/xgc.c b/xlib/xgc.c index 78c7501..984c949 100644 --- a/xlib/xgc.c +++ b/xlib/xgc.c @@ -560,7 +560,7 @@ XDrawSegments( XSegment *segments, int nsegments) { - return Success; + return BadDrawable; } #endif -- cgit v0.12