Changeset 753 in Sophya for trunk/SophyaLib/NTools/fftpackc.c


Ignore:
Timestamp:
Mar 2, 2000, 3:54:40 PM (26 years ago)
Author:
ansari
Message:

Correction de cast (int *) en (int_4 *)
Ca ne devrait pas exister!
Dominique Yvon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/NTools/fftpackc.c

    r717 r753  
    2727    iw1 = *n + *n + 1;
    2828    iw2 = iw1 + *n + *n;
    29     cfftb1_(n, &c__[1], &wsave[1], &wsave[iw1], (int *)&wsave[iw2]);  /* (int *) ajoute - Reza 29/11/99 */
     29    cfftb1_(n, &c__[1], &wsave[1], &wsave[iw1], (int_4 *)&wsave[iw2]);  /* (int *) ajoute - Reza 29/11/99 */
    3030    return 0;
    3131} /* cfftb_ */
     
    180180    iw1 = *n + *n + 1;
    181181    iw2 = iw1 + *n + *n;
    182     cfftf1_(n, &c__[1], &wsave[1], &wsave[iw1], (int *)&wsave[iw2]);   /* (int *) ajoute - Reza 29/11/99 */
     182    cfftf1_(n, &c__[1], &wsave[1], &wsave[iw1], (int_4 *)&wsave[iw2]);   /* (int *) ajoute - Reza 29/11/99 */
    183183    return 0;
    184184} /* cfftf_ */
     
    331331    iw1 = *n + *n + 1;
    332332    iw2 = iw1 + *n + *n;
    333     cffti1_(n, &wsave[iw1], (int *)&wsave[iw2]);  /*  (int *) ajoute Reza 29/11/99 */
     333    cffti1_(n, &wsave[iw1], (int_4 *)&wsave[iw2]);  /*  (int *) ajoute Reza 29/11/99 */
    334334    return 0;
    335335} /* cffti_ */
     
    10411041        return 0;
    10421042    }
    1043     ezfft1_(n, &wsave[(*n << 1) + 1], (integer*)&wsave[*n * 3 + 1]);
     1043    ezfft1_(n, &wsave[(*n << 1) + 1], (int_4*)&wsave[*n * 3 + 1]);
    10441044    return 0;
    10451045} /* ezffti_ */
Note: See TracChangeset for help on using the changeset viewer.