Skip to content
Snippets Groups Projects
Commit ad521238 authored by Pedro Gonnet's avatar Pedro Gonnet
Browse files

changes pointed out by matthieu.

parent 31e752ef
No related branches found
No related tags found
2 merge requests!136Master,!114size_t
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
*/ */
void printParticle(struct part *parts, struct xpart *xparts, long long int id, void printParticle(struct part *parts, struct xpart *xparts, long long int id,
int N) { size_t N) {
int i, found = 0; int i, found = 0;
...@@ -66,7 +66,7 @@ void printParticle(struct part *parts, struct xpart *xparts, long long int id, ...@@ -66,7 +66,7 @@ void printParticle(struct part *parts, struct xpart *xparts, long long int id,
if (!found) printf("## Particles[???] id=%lld not found\n", id); if (!found) printf("## Particles[???] id=%lld not found\n", id);
} }
void printgParticle(struct gpart *parts, long long int id, int N) { void printgParticle(struct gpart *parts, long long int id, size_t N) {
int i, found = 0; int i, found = 0;
......
...@@ -23,9 +23,9 @@ ...@@ -23,9 +23,9 @@
#include "cell.h" #include "cell.h"
#include "part.h" #include "part.h"
void printParticle(struct part *parts, struct xpart *xparts, long long int i, void printParticle(struct part *parts, struct xpart *xparts, long long int id,
int N); size_t N);
void printgParticle(struct gpart *parts, long long int i, int N); void printgParticle(struct gpart *parts, long long int id, size_t N);
void printParticle_single(struct part *p, struct xpart *xp); void printParticle_single(struct part *p, struct xpart *xp);
#ifdef HAVE_METIS #ifdef HAVE_METIS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment