Commit 9a56a931 authored by Juliano Murari's avatar Juliano Murari

hal/sm_io/*/fmc130m_4ch/*: fix wrong pointer type

This was causing a segfault error, but not a crash on
my x86_64 mnachine.
parent 545afabd
......@@ -182,7 +182,7 @@ smio_err_e fmc130m_4ch_shutdown (smio_t *self)
{
DBE_DEBUG (DBG_SM_IO | DBG_LVL_TRACE, "[sm_io:fmc130m_4ch_exp] Shutting down fmc130m_4ch\n");
smio_fmc130m_4ch_destroy (self->smio_handler);
smio_fmc130m_4ch_destroy ((smio_fmc130m_4ch_t **) &self->smio_handler);
self->exp_ops = NULL;
self->thsafe_client_ops = NULL;
self->ops = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment