diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-15 07:17:51 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-15 07:17:51 (GMT) |
commit | cf5a1611319de27b365175a7202c2bbd4730846c (patch) | |
tree | 07b749f81948a9dc3c0bd09d2317ec37d49838b4 /src/compression/xtc3.c | |
parent | 9d7e53f000baae40b1d942a4c63b66283907ff9b (diff) |
Fix some MSVC and Inter C Compiler warnings.
Diffstat (limited to 'src/compression/xtc3.c')
-rw-r--r-- | src/compression/xtc3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compression/xtc3.c b/src/compression/xtc3.c index f7bab63..834def0 100644 --- a/src/compression/xtc3.c +++ b/src/compression/xtc3.c @@ -219,9 +219,9 @@ static void insert_value_in_array(unsigned int **ptr, int *nele, int *nele_alloc static void swapdecide(struct xtc3_context *xtc3_context, int *input,int *swapatoms, int *large_index, int *minint) { - (void)large_index; int didswap=0; int normal,swapped; + (void)large_index; swap_is_better(input,minint,&normal,&swapped); /* We have to determine if it is worth to change the behaviour. If diff is positive it means that it is worth something to |