* ext/dl/handle.c (rb_dlhandle_sym): moved conditionally used variable.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-02-17 18:17:51 +00:00
Родитель da97071549
Коммит 056d798ed2
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -129,10 +129,9 @@ rb_dlhandle_sym(VALUE self, VALUE sym)
struct dl_handle *dlhandle;
void *handle;
const char *name;
const char *err;
int i;
#if defined(HAVE_DLERROR)
const char *err;
# define CHECK_DLERROR if( err = dlerror() ){ func = 0; }
#else
# define CHECK_DLERROR