freebsd-ports/games/pingus/files/patch-src-lisp-getters.hpp
Tijl Coosemans 9f03ef324f - Fix build with clang with two new patches
- Install icon and use it in a .desktop file
- While here, use space in WWW: and use new style LIB_DEPENDS

PR:		ports/181498
Submitted by:	amdmi3
Approved by:	maintainer timeout (8 weeks)
2013-10-19 11:19:35 +00:00

11 lines
325 B
C++

--- src/lisp/getters.hpp.orig 2007-08-17 20:20:09.000000000 +0400
+++ src/lisp/getters.hpp 2013-08-09 13:42:19.551761882 +0400
@@ -30,7 +30,7 @@
if(lisp->get_list_size() != 2)
return false;
- const Lisp* el = lisp->get_list_elem(1);
+ const Lisp* el = lisp->get_list_elem(1).get();
return get(el, val);
}