diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-22 10:53:50 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-22 10:53:50 (GMT) |
commit | 2f0b67947255f4d11186b94a4e4349dd465be21d (patch) | |
tree | 5f8f6ae987394760103414a8ff0a64d18a9a9154 /src/lib/tng_io.c | |
parent | 60e51d78bc0832407e04c7fdc4d39e977daab2ed (diff) |
Changed path for generated header files.
Always generate header files (to avoid cppcheck errors).
Fixed cppcheck error py using ++ prefix instead of suffix.
Diffstat (limited to 'src/lib/tng_io.c')
-rw-r--r-- | src/lib/tng_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tng_io.c b/src/lib/tng_io.c index d819fad..eb878e8 100644 --- a/src/lib/tng_io.c +++ b/src/lib/tng_io.c @@ -7348,7 +7348,7 @@ tng_function_status DECLSPECDLLEXPORT tng_chain_residue_w_id_add * residues of this chain */ if(temp_residue != last_residue) { - temp_residue++; + ++temp_residue; memmove(temp_residue + 1, temp_residue, last_residue - temp_residue); } |