diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2009-03-29 10:38:31 -0300 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2009-03-29 10:38:31 -0300 |
commit | 2d0724c17ece708e93126345fb24f4683f51ed17 (patch) | |
tree | 68c08cadca9193e736dd36b65d835db0335f8af8 /hardinfo2/arch/linux/common/modules.h | |
parent | 43b9f535ee40022e41f9c618e32f3c2f3a7b1469 (diff) |
Cleanups
Diffstat (limited to 'hardinfo2/arch/linux/common/modules.h')
-rw-r--r-- | hardinfo2/arch/linux/common/modules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hardinfo2/arch/linux/common/modules.h b/hardinfo2/arch/linux/common/modules.h index 7ea238b7..78fb9de3 100644 --- a/hardinfo2/arch/linux/common/modules.h +++ b/hardinfo2/arch/linux/common/modules.h @@ -56,7 +56,7 @@ scan_modules_do(void) return; } - fgets(buffer, 1024, lsmod); /* Discards the first line */ + (void)fgets(buffer, 1024, lsmod); /* Discards the first line */ while (fgets(buffer, 1024, lsmod)) { gchar *buf, *strmodule, *hashkey; |