Thu Feb 12 15:01:10 CST 2009 Michael Jerris <mike@jerris.com>

* su_port.h: silenced warning in su_port_deferrable()


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11959 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-02-12 21:25:18 +00:00
parent 459bad1563
commit a043230c51
2 changed files with 4 additions and 3 deletions

View File

@ -1 +1 @@
Thu Feb 12 15:22:56 CST 2009
Thu Feb 12 15:25:06 CST 2009

View File

@ -421,9 +421,10 @@ su_timer_queue_t *su_port_deferrable(su_port_t *self)
su_virtual_port_t *base = (su_virtual_port_t *)self;
if (base == NULL) {
errno = EFAULT;
return NULL;
errno = EFAULT;
return NULL;
}
return base->sup_vtable->su_port_deferrable(self);
}