mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
21 lines
1.0 KiB
Plaintext
21 lines
1.0 KiB
Plaintext
Fix build with llvm22 - actual bug.
|
|
|
|
Index: uwm/init.c
|
|
--- uwm/init.c.orig
|
|
+++ uwm/init.c
|
|
@@ -984,11 +984,11 @@ void ReadConfigFile(FILE *uwmrc)
|
|
ActiveWorkSpace][UDE_Shadow].pixel);
|
|
AllocColors(r,g,b,\
|
|
&TheScreen.Colors[TheScreen.desktop.\
|
|
- ActiveWorkSpace][UDE_Back],\
|
|
+ ActiveWorkSpace][UDE_Back].pixel,\
|
|
&TheScreen.Colors[TheScreen.desktop.\
|
|
- ActiveWorkSpace][UDE_Light],\
|
|
+ ActiveWorkSpace][UDE_Light].pixel,\
|
|
&TheScreen.Colors[TheScreen.desktop.\
|
|
- ActiveWorkSpace][UDE_Shadow]);
|
|
+ ActiveWorkSpace][UDE_Shadow].pixel);
|
|
break;
|
|
case FontColor:
|
|
if(ParseColor(p,&r,&g,&b)) {
|