1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-06 04:23:00 +02:00

fix: force printf locale (#74)

This commit is contained in:
aclist 2023-07-26 09:32:44 +09:00
parent 99d4fa73cd
commit 08669fa435

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=3.3.9 version=3.3.10
aid=221100 aid=221100
game="dayz" game="dayz"
@ -1385,7 +1385,7 @@ get_dist(){
echo "$dist" echo "$dist"
else else
local dist=$($km_helper "$local_lat" "$local_lon" "$remote_lat" "$remote_lon") local dist=$($km_helper "$local_lat" "$local_lon" "$remote_lat" "$remote_lon")
printf "%05.0f %s" "$dist" "km" LC_NUMERIC=C printf "%05.0f %s" "$dist" "km"
fi fi
} }
prepare_filters(){ prepare_filters(){