From: Martin Quinson Date: Fri, 19 Apr 2019 09:23:08 +0000 (+0200) Subject: [sonar] define each identifiers on its line X-Git-Tag: v3.22.2~84 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6ce33965cc9d0d6605029eb323103cdd5dc9b38b [sonar] define each identifiers on its line --- diff --git a/teshsuite/smpi/io-all/io-all.c b/teshsuite/smpi/io-all/io-all.c index 9d3506c86a..397e875498 100644 --- a/teshsuite/smpi/io-all/io-all.c +++ b/teshsuite/smpi/io-all/io-all.c @@ -9,7 +9,11 @@ int main( int argc, char *argv[] ) { int errs = 0; - int size, rank, i, *buf, count; + int size; + int rank; + int i; + int* buf; + int count; MPI_File fh; MPI_Comm comm; MPI_Status status; diff --git a/teshsuite/smpi/io-ordered/io-ordered.c b/teshsuite/smpi/io-ordered/io-ordered.c index 14bbfe6018..c2117e5943 100644 --- a/teshsuite/smpi/io-ordered/io-ordered.c +++ b/teshsuite/smpi/io-ordered/io-ordered.c @@ -9,7 +9,11 @@ int main( int argc, char *argv[] ) { int errs = 0; - int size, rank, i, *buf, count; + int size; + int rank; + int i; + int* buf; + int count; MPI_File fh; MPI_Comm comm; MPI_Status status; diff --git a/teshsuite/smpi/io-shared/io-shared.c b/teshsuite/smpi/io-shared/io-shared.c index 9b1b5b143a..b18e5a6b9a 100644 --- a/teshsuite/smpi/io-shared/io-shared.c +++ b/teshsuite/smpi/io-shared/io-shared.c @@ -9,7 +9,11 @@ int main( int argc, char *argv[] ) { int errs = 0; - int size, rank, i, *buf, count; + int size; + int rank; + int i; + int* buf; + int count; MPI_File fh; MPI_Comm comm; MPI_Status status; diff --git a/teshsuite/smpi/io-simple-at/io-simple-at.c b/teshsuite/smpi/io-simple-at/io-simple-at.c index 3ddf2e9eee..fc084edda8 100644 --- a/teshsuite/smpi/io-simple-at/io-simple-at.c +++ b/teshsuite/smpi/io-simple-at/io-simple-at.c @@ -9,7 +9,11 @@ int main( int argc, char *argv[] ) { int errs = 0; - int size, rank, i, *buf, count; + int size; + int rank; + int i; + int* buf; + int count; MPI_File fh; MPI_Comm comm; MPI_Status status; diff --git a/teshsuite/smpi/io-simple/io-simple.c b/teshsuite/smpi/io-simple/io-simple.c index 9ee0db60cb..c0ede9e2ec 100644 --- a/teshsuite/smpi/io-simple/io-simple.c +++ b/teshsuite/smpi/io-simple/io-simple.c @@ -9,7 +9,11 @@ int main( int argc, char *argv[] ) { int errs = 0; - int size, rank, i, *buf, count; + int size; + int rank; + int i; + int* buf; + int count; MPI_File fh; MPI_Comm comm; MPI_Status status;