зеркало из https://github.com/github/ruby.git
handle.c: suppress warnings
* ext/fiddle/handle.c (CHECK_DLERROR): suppress warnings for using the result of an assignment as a condition without parentheses. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
53a7c96417
Коммит
bade6e467e
|
@ -314,7 +314,7 @@ fiddle_handle_sym(void *handle, const char *name)
|
|||
{
|
||||
#if defined(HAVE_DLERROR)
|
||||
const char *err;
|
||||
# define CHECK_DLERROR if( err = dlerror() ){ func = 0; }
|
||||
# define CHECK_DLERROR if ((err = dlerror()) != 0) { func = 0; }
|
||||
#else
|
||||
# define CHECK_DLERROR
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче