summaryrefslogtreecommitdiffstats
path: root/src/data_conversion.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/data_conversion.rs')
-rw-r--r--src/data_conversion.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data_conversion.rs b/src/data_conversion.rs
index 12f2dccd..4a529d71 100644
--- a/src/data_conversion.rs
+++ b/src/data_conversion.rs
@@ -371,7 +371,7 @@ pub fn convert_network_data_points(
),
};
- let (rx_converted_result, total_rx_converted_result): ((f64, String), (f64, String)) =
+ let (rx_converted_result, total_rx_converted_result): ((f64, String), (f64, &'static str)) =
if network_use_binary_prefix {
(
get_binary_prefix(rx_data, unit), // If this isn't obvious why there's two functions, one you can configure the unit, the other is always bytes
@@ -384,7 +384,7 @@ pub fn convert_network_data_points(
)
};
- let (tx_converted_result, total_tx_converted_result): ((f64, String), (f64, String)) =
+ let (tx_converted_result, total_tx_converted_result): ((f64, String), (f64, &'static str)) =
if network_use_binary_prefix {
(
get_binary_prefix(tx_data, unit),