summaryrefslogtreecommitdiff
path: root/navit/tools/asc2navit
diff options
context:
space:
mode:
Diffstat (limited to 'navit/tools/asc2navit')
-rwxr-xr-xnavit/tools/asc2navit8
1 files changed, 4 insertions, 4 deletions
diff --git a/navit/tools/asc2navit b/navit/tools/asc2navit
index 77ba4ad15..096f56ded 100755
--- a/navit/tools/asc2navit
+++ b/navit/tools/asc2navit
@@ -38,7 +38,7 @@ my $pipe = open_outputhandle();
# ...feed the pipe...
run();
-# ...and close it properly
+# ...and close it properly
close $pipe;
###############################################################################
@@ -110,7 +110,7 @@ sub determine_filename {
$filename = "$onefile.bin";
$filename = "$onefile.xml" if ($write_osm);
}
-
+
print "$0 writing output to $filename\n";
}
@@ -119,14 +119,14 @@ sub run {
print $pipe '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
print $pipe '<osm version="0.5">' . "\n";
- # set the amenity and
+ # set the amenity and
my @amenities = keys %files;
while (my $amenity = shift @amenities) {
foreach my $file (@{$files{$amenity}}) {
process_file($file);
}
}
-
+
# close the osm file
print $pipe '</osm>';
# and show up some stats