diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2008-11-01 11:40:22 -0300 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2008-11-01 11:40:22 -0300 |
commit | a55f29272d61b14872d788ee3de240c081305110 (patch) | |
tree | c941579dc6ce28f2137de09c24d3652f9fdd71ba /hardinfo2/arch/linux/common | |
parent | d4c67aee7445dfd55a54b0a7170e2f6c34d04505 (diff) |
Show filesystem's mount point
Diffstat (limited to 'hardinfo2/arch/linux/common')
-rw-r--r-- | hardinfo2/arch/linux/common/filesystem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hardinfo2/arch/linux/common/filesystem.h b/hardinfo2/arch/linux/common/filesystem.h index 0224e962..6fefd8aa 100644 --- a/hardinfo2/arch/linux/common/filesystem.h +++ b/hardinfo2/arch/linux/common/filesystem.h @@ -93,9 +93,9 @@ scan_filesystems(void) stravail); g_hash_table_insert(moreinfo, g_strdup_printf("FS%d", ++count), strhash); - fs_list = h_strdup_cprintf("$FS%d$%s=%.2f|%s|%s\n", + fs_list = h_strdup_cprintf("$FS%d$%s=%.2f %% (%s of %s)|%s\n", fs_list, - count, tmp[0], use_ratio, strsize, stravail); + count, tmp[0], use_ratio, strsize, stravail, tmp[1]); g_free(strsize); g_free(stravail); |