summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-10-26 10:54:07 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-10-26 19:27:03 -0700
commit369baa5b743ec1359ac2bb143297cb203ccbe498 (patch)
tree4feb9f7e00396e70352d71201b1dfda49385691a
parentc5eaac122e28079f2e580095c0b6673cdb3c54f9 (diff)
downloadsubsurface-369baa5b743ec1359ac2bb143297cb203ccbe498.tar.gz
cleanup: move variable declaration closer to use
This way we avoid an unused variable warning on mobile builds. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--core/import-csv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/import-csv.c b/core/import-csv.c
index 4775b7c58..f24c5ec0b 100644
--- a/core/import-csv.c
+++ b/core/import-csv.c
@@ -281,7 +281,7 @@ int parse_csv_file(const char *filename, struct xml_params *params, const char *
struct dive_table *table, struct trip_table *trips, struct dive_site_table *sites,
struct device_table *devices, struct filter_preset_table *filter_presets)
{
- int ret, i;
+ int ret;
struct memblock mem;
time_t now;
struct tm *timep = NULL;
@@ -326,7 +326,7 @@ int parse_csv_file(const char *filename, struct xml_params *params, const char *
#ifndef SUBSURFACE_MOBILE
if (verbose >= 2) {
fprintf(stderr, "(echo '<csv>'; cat %s;echo '</csv>') | xsltproc ", filename);
- for (i = 0; i < xml_params_count(params); i++)
+ for (int i = 0; i < xml_params_count(params); i++)
fprintf(stderr, "--stringparam %s %s ", xml_params_get_key(params, i), xml_params_get_value(params, i));
fprintf(stderr, "%s/xslt/%s -\n", SUBSURFACE_SOURCE, csvtemplate);
}
@@ -950,7 +950,7 @@ int parse_manual_file(const char *filename, struct xml_params *params, struct di
struct tm *timep;
char curdate[9];
char curtime[6];
- int ret, i;
+ int ret;
time(&now);
@@ -974,7 +974,7 @@ int parse_manual_file(const char *filename, struct xml_params *params, struct di
#ifndef SUBSURFACE_MOBILE
if (verbose >= 2) {
fprintf(stderr, "(echo '<manualCSV>'; cat %s;echo '</manualCSV>') | xsltproc ", filename);
- for (i = 0; i < xml_params_count(params); i++)
+ for (int i = 0; i < xml_params_count(params); i++)
fprintf(stderr, "--stringparam %s %s ", xml_params_get_key(params, i), xml_params_get_value(params, i));
fprintf(stderr, "%s/xslt/manualcsv2xml.xslt -\n", SUBSURFACE_SOURCE);
}