From 2e3a833a2b01ded001b3fa3a26880e953799fa8d Mon Sep 17 00:00:00 2001 From: Mark Olsen Date: Fri, 13 Nov 2009 18:42:11 +0000 Subject: [PATCH] Updated to match the new prototype for Sys_LoadLibrary(). git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3448 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/sys_morphos.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/client/sys_morphos.c b/engine/client/sys_morphos.c index 2b6874bf0..ac923979c 100755 --- a/engine/client/sys_morphos.c +++ b/engine/client/sys_morphos.c @@ -352,7 +352,8 @@ void Sys_CloseLibrary(dllhandle_t *lib) { dlclose((void*)lib); } -dllhandle_t *Sys_LoadLibrary(char *name, dllfunction_t *funcs) + +dllhandle_t *Sys_LoadLibrary(const char *name, dllfunction_t *funcs) { int i; dllhandle_t lib;