From 94f787562584d0202e0734e820dfe175f642849b Mon Sep 17 00:00:00 2001 From: Ashley Cawley Date: Fri, 13 Dec 2024 19:05:34 +0000 Subject: [PATCH] Fixed tiny typo miutes to minutes --- meshtastic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic.c b/meshtastic.c index 2308346..d12c87d 100644 --- a/meshtastic.c +++ b/meshtastic.c @@ -633,7 +633,7 @@ void seconds_to_days_str(uint32_t seconds, char *buffer) if (hours > 0) g_string_append_printf(str, "%d hours, ", hours); if (minutes > 0) - g_string_append_printf(str, "%d miutes, ", minutes); + g_string_append_printf(str, "%d minutes, ", minutes); if (seconds > 0) g_string_append_printf(str, "%d seconds ", seconds); strcpy(buffer, str->str);