Merge pull request #40 from Jafaral/master

Fix: undefined symbol error when loading lxc.so
This commit is contained in:
Andre Nathan 2016-10-24 10:53:58 -02:00 committed by GitHub
commit 882436fc01

View file

@ -42,7 +42,6 @@ extern void *rb_thread_call_without_gvl(void *(*func)(void *), void *data1,
extern int lxc_wait_for_pid_status(pid_t pid);
extern long lxc_config_parse_arch(const char *arch);
extern const char *lxc_strerror(int error);
static VALUE Container;
static VALUE Error;
@ -2069,7 +2068,7 @@ container_unfreeze(VALUE self)
ret = RELEASING_GVL(unfreeze_without_gvl, data);
if (!ret)
rb_raise(Error, "unable to unfreeze container: %s", lxc_strerror(ret));
rb_raise(Error, "unable to unfreeze container");
return self;
}