diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-03 08:12:34 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-03 08:12:34 (GMT) |
commit | 1acac22f9b52c136ad099844f63cb7d1273557ac (patch) | |
tree | 221b55d0a3b2ab5466e9db87f5cc937bb68f55e4 /src/compression/tng_compress.c | |
parent | 9fd2a7905223932f7c737eae420a82875389ebc8 (diff) |
Removed printf in input verifications.
Diffstat (limited to 'src/compression/tng_compress.c')
-rw-r--r-- | src/compression/tng_compress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compression/tng_compress.c b/src/compression/tng_compress.c index 31818ee..ebd495b 100644 --- a/src/compression/tng_compress.c +++ b/src/compression/tng_compress.c @@ -40,7 +40,7 @@ static int verify_input_data(double *x, int natoms, int nframes, double precisio goto error; return 0; error: -#if 1 +#if 0 for (iframe=0; iframe<nframes; iframe++) for (i=0; i<natoms; i++) for (j=0; j<3; j++) @@ -60,7 +60,7 @@ static int verify_input_data_float(float *x, int natoms, int nframes, float prec goto error; return 0; error: -#if 1 +#if 0 for (iframe=0; iframe<nframes; iframe++) for (i=0; i<natoms; i++) for (j=0; j<3; j++) |