Files
ports/print/bibview/patches/patch-ComboBo_c
T
naddy 34814184c6 print/bibview: add missing casts to fix build with llvm22
The implicit casts are already protected by class checks.
2026-06-16 14:40:25 +00:00

11 lines
222 B
Plaintext

Index: ComboBo.c
--- ComboBo.c.orig
+++ ComboBo.c
@@ -768,5 +768,5 @@ ComboBoxSetString(fnw, dir)
}
strcpy(CurrentDir(fnw), dir);
- ChangeDirectory(fnw, 0);
+ ChangeDirectory((ComboBoxWidget) fnw, 0);
}