]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dynlib.cpp
restore the stream position in wxImageHandler itself instead of forcing all
[wxWidgets.git] / src / common / dynlib.cpp
index 91981e3061c0e741e145e75f1b6a10a31f9d0c4d..f2938391804f9cba6343eef4f77d9daeaef05610 100644 (file)
@@ -457,7 +457,7 @@ const char *dlerror()
     return dl_last_error;
 }
 
-void *dlopen(const char *path, int mode /* mode is ignored */)
+void *dlopen(const char *path, int WXUNUSED(mode) /* mode is ignored */)
 {
     int dyld_result;
     NSObjectFileImage ofile;
@@ -484,7 +484,7 @@ int dlclose(void *handle)
     return 0;
 }
 
-void *dlsym(void *handle, const char *symbol)
+void *dlsym(void *WXUNUSED(handle), const char *symbol)
 {
     void *addr;