public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] pakfire_format_time(): Fix typo
@ 2023-03-21 10:14 Stefan Schantl
  2023-03-22 16:38 ` Bernhard Bitsch
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2023-03-21 10:14 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 805 bytes --]

Fix a small typo when displaying the build time
which is longer than 1 hour.

In such a case the following message got displayed:

Build successfully completed in 01m07m02s

Which should be 01h07m02s

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 src/libpakfire/string.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libpakfire/string.c b/src/libpakfire/string.c
index 8eaf8d91..931ba701 100644
--- a/src/libpakfire/string.c
+++ b/src/libpakfire/string.c
@@ -394,7 +394,7 @@ int __pakfire_format_time(char* buffer, const size_t length, const time_t t) {
 	if (t >= 86400)
 		format = "%dd%Hh%Mm";
 	else if (t >= 3600)
-		format = "%Hm%Mm%Ss";
+		format = "%Hh%Mm%Ss";
 	else if (t >= 60)
 		format = "%Mm%Ss";
 	else
-- 
2.30.2


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] pakfire_format_time(): Fix typo
  2023-03-21 10:14 [PATCH] pakfire_format_time(): Fix typo Stefan Schantl
@ 2023-03-22 16:38 ` Bernhard Bitsch
  0 siblings, 0 replies; 2+ messages in thread
From: Bernhard Bitsch @ 2023-03-22 16:38 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 954 bytes --]

Reviewed-by: Bernhard Bitsc <bbitsch(a)ipfire.org>

Am 21.03.2023 um 11:14 schrieb Stefan Schantl:
> Fix a small typo when displaying the build time
> which is longer than 1 hour.
> 
> In such a case the following message got displayed:
> 
> Build successfully completed in 01m07m02s
> 
> Which should be 01h07m02s
> 
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
>   src/libpakfire/string.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/libpakfire/string.c b/src/libpakfire/string.c
> index 8eaf8d91..931ba701 100644
> --- a/src/libpakfire/string.c
> +++ b/src/libpakfire/string.c
> @@ -394,7 +394,7 @@ int __pakfire_format_time(char* buffer, const size_t length, const time_t t) {
>   	if (t >= 86400)
>   		format = "%dd%Hh%Mm";
>   	else if (t >= 3600)
> -		format = "%Hm%Mm%Ss";
> +		format = "%Hh%Mm%Ss";
>   	else if (t >= 60)
>   		format = "%Mm%Ss";
>   	else

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-03-22 16:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-21 10:14 [PATCH] pakfire_format_time(): Fix typo Stefan Schantl
2023-03-22 16:38 ` Bernhard Bitsch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox