You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-util/glbsp/files/glbsp-2.24-return-type.patch

10 lines
262 B

Fix build failure with USE=fltk due to wrong return type.
https://bugs.gentoo.org/627412
--- a/nodeview/path.cc
+++ b/nodeview/path.cc
@@ -47,3 +47,3 @@
PrintWarn("Unable to open path file: %s\n", strerror(errno));
- return false;
+ return NULL;
}