aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/util.c
diff options
context:
space:
mode:
authorLucas de Castro Borges <lucas@gnuabordo.com.br>2024-04-22 19:19:56 -0300
committerLucas de Castro Borges <lucas@gnuabordo.com.br>2024-04-22 19:19:56 -0300
commitfbf360db614483cc1655e47be4744b5bd00d54f5 (patch)
tree15cf74264e91ede73e5d4a0e18a3d32091ceddc2 /hardinfo2/util.c
parent647775860805ea26a377c10d1490686a6f7a3434 (diff)
parent0574020490ffae5686b0c75d7753bfbcf2286114 (diff)
Update upstream source from tag 'upstream/2.0.17pre'
Update to upstream version '2.0.17pre' with Debian dir 5d26fb98f3078817a456822b48c33e4ffac5c49e
Diffstat (limited to 'hardinfo2/util.c')
-rw-r--r--hardinfo2/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hardinfo2/util.c b/hardinfo2/util.c
index cbabcc53..516ddb0c 100644
--- a/hardinfo2/util.c
+++ b/hardinfo2/util.c
@@ -90,7 +90,7 @@ gchar *seconds_to_string(unsigned int seconds)
{
unsigned int hours, minutes, days;
const gchar *days_fmt, *hours_fmt, *minutes_fmt, *seconds_fmt;
- gchar *full_fmt, *ret = g_strdup("");
+ gchar *full_fmt=NULL, *ret = g_strdup("");
minutes = seconds / 60;
seconds %= 60;
@@ -416,13 +416,13 @@ void parameters_init(int *argc, char ***argv, ProgramParameters * param)
.short_name = 'b',
.arg = G_OPTION_ARG_STRING,
.arg_data = &run_benchmark,
- .description = N_("run benchmark eg. -b 'FPU FFT'")},
+ .description = N_("run single benchmark eg. -b 'FPU FFT' (Default all Benchmarks runs)")},
{
.long_name = "user-note",
.short_name = 'u',
.arg = G_OPTION_ARG_STRING,
.arg_data = &bench_user_note,
- .description = N_("note attached to benchmark results")},
+ .description = N_("user note attached to benchmark results. (updating/synchronize with server)")},
{
.long_name = "result-format",
.short_name = 'g',