diff options
author | hwspeedy <ns@bigbear.dk> | 2024-02-27 20:45:48 +0100 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-02-27 20:45:48 +0100 |
commit | e4fcc3994539911bda7677bb7baa1865f2eadf4c (patch) | |
tree | 627e4a1a519ba2b24a4e250c471f48efea4a9781 | |
parent | 8d7d281335e911fa7bf1e6e5f20a686adbac44ae (diff) |
FIX critical GLIB warning - just show result
-rw-r--r-- | modules/computer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/computer.c b/modules/computer.c index fff8ba36..68629f2e 100644 --- a/modules/computer.c +++ b/modules/computer.c @@ -639,7 +639,8 @@ gchar *callback_security(void) info_add_group( info, _("Health"), - info_field_update(_("Available entropy in /dev/random"), 1000, .tag = g_strdup("entropy") ), + //info_field_update(_("Available entropy in /dev/random"), 1000, .tag = g_strdup("entropy") ), + info_field(_("Available entropy in /dev/random"), computer_get_entropy_avail() ), info_field_last()); info_add_group( |