Skip to content

Commit

Permalink
Fixed internal struct access.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Dias Pinto Vitenti committed Aug 13, 2021
1 parent e289c54 commit 29bbb0a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion numcosmo/math/ncm_fftlog.c
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,9 @@ _ncm_fftlog_eval (NcmFftlog *fftlog)
gdouble *
ncm_fftlog_get_Ym (NcmFftlog *fftlog, guint *size)
{
fftw_complex *Ym_0 = g_ptr_array_index (fftlog->Ym, 0);
NcmFftlogPrivate * const self = fftlog->priv;

fftw_complex *Ym_0 = g_ptr_array_index (self->Ym, 0);

NCM_FFTLOG_GET_CLASS (fftlog)->get_Ym (fftlog, Ym_0);

Expand Down

0 comments on commit 29bbb0a

Please sign in to comment.