summaryrefslogtreecommitdiff
path: root/hardinfo2/util.c
diff options
context:
space:
mode:
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',