From a788dc7ae4c083042bac9677c6b82ee4f13852ae Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Tue, 27 Jun 2017 14:15:51 +0200
Subject: [PATCH] Small fix for fortran interface generator

---
 spm.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/spm.h b/spm.h
index f09c5639..a7219988 100644
--- a/spm.h
+++ b/spm.h
@@ -90,8 +90,8 @@ void          spmUpdateComputedFields( pastix_spm_t *spm );
  */
 double        spmNorm( pastix_normtype_t ntype, const pastix_spm_t *spm );
 int           spmMatVec(const pastix_trans_t trans, const void *alpha, const pastix_spm_t *spm, const void *x, const void *beta, void *y );
-void          spmScalMatrix( const pastix_complex64_t alpha, pastix_spm_t* spm );
-void          spmScalVector( const double alpha, pastix_spm_t* spm, void *x );
+void          spmScalMatrix( const pastix_complex64_t alpha, pastix_spm_t *spm );
+void          spmScalVector( const double alpha, pastix_spm_t *spm, void *x );
 
 /**
  * @}
@@ -145,8 +145,8 @@ int           spmReadDriver( pastix_driver_t  driver,
  */
 void *        spm2Dense   ( const pastix_spm_t *spm );
 void          spmPrint    ( const pastix_spm_t *spm, FILE *f );
-void          spmPrintInfo( const pastix_spm_t* spm, FILE *f );
-pastix_spm_t *spmExpand   ( const pastix_spm_t* spm );
+void          spmPrintInfo( const pastix_spm_t *spm, FILE *f );
+pastix_spm_t *spmExpand   ( const pastix_spm_t *spm );
 pastix_spm_t *spmDofExtend( const pastix_spm_t *spm, const int type, const int dof  );
 
 /**
-- 
GitLab