diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-08-26 12:14:46 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-08-26 12:14:46 -0700 |
commit | 0813d2168a8b7d85d2d12c042508ce1ed2d98fda (patch) | |
tree | c2b2282f2a22e377e8b37ff39b2fe1641727544c /core/profile.c | |
parent | aabcff9c5402a9b83c799a0a29172777e0383217 (diff) | |
download | subsurface-0813d2168a8b7d85d2d12c042508ce1ed2d98fda.tar.gz |
Remove some unused variables
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/profile.c')
-rw-r--r-- | core/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/profile.c b/core/profile.c index eccbb5612..c63ea8294 100644 --- a/core/profile.c +++ b/core/profile.c @@ -1460,7 +1460,7 @@ void compare_samples(struct plot_data *e1, struct plot_data *e2, char *buf, int char *buf2 = malloc(bufsize); int avg_speed, max_asc_speed, max_desc_speed; int delta_depth, avg_depth, max_depth, min_depth; - int bar_used, last_pressure, pressurevalue, last_cylidx; + int bar_used, last_pressure, pressurevalue; int count, last_sec, delta_time; bool crossed_tankchange = false; |