diff options
author | Magnus Lundborg <magnus.lundborg@scilifelab.se> | 2012-12-03 16:00:49 (GMT) |
---|---|---|
committer | Magnus Lundborg <magnus.lundborg@scilifelab.se> | 2012-12-03 16:00:49 (GMT) |
commit | 8bb519b429a75ffd52526ba86fe89057e99f7840 (patch) | |
tree | d6cb5e2bcdc382f515767106d2ac95522cd9f1b4 /src/tests/trg_io_testing.c | |
parent | 635bf6ab84fd624eb66f6f33006789ab340147ab (diff) |
Switch from unsigned to signed integers.
Diffstat (limited to 'src/tests/trg_io_testing.c')
-rw-r--r-- | src/tests/trg_io_testing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/trg_io_testing.c b/src/tests/trg_io_testing.c index caa74dd..08a2b90 100644 --- a/src/tests/trg_io_testing.c +++ b/src/tests/trg_io_testing.c @@ -12,7 +12,7 @@ static trg_function_status trg_setup_test_molecules(struct trg_trajectory *traj) struct trg_chain *chain; struct trg_residue *residue; struct trg_atom *atom; - uint64_t cnt; + int64_t cnt; // int i; trg_add_molecule(traj, "water", &molecule); |