Re: [Flightgear-devel] [PATCH] use const char* for dlerror

2010-03-23 Thread Erik Hofman
Csaba Halász wrote: This fixes compilation error for non-bsd systems that happen to return const char* from dlerror(). No reason not to, since const char* is assignable from char*. It's committed, thanks. Erik --

[Flightgear-devel] [PATCH] use const char* for dlerror

2010-03-22 Thread Csaba Halász
This fixes compilation error for non-bsd systems that happen to return const char* from dlerror(). No reason not to, since const char* is assignable from char*. -- Csaba/Jester diff --git a/simgear/screen/extensions.cxx b/simgear/screen/extensions.cxx index 7429c0f..130673c 100644 ---