diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-04-30 17:57:02 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-04-30 17:57:02 -0400 |
commit | 74315872e5104396feb90c1155adbc20bf6ee78c (patch) | |
tree | b43cb2ccb7dd3bc2e005a0236550e94a3ce095b2 /main.c | |
parent | f511688f83dc0386216f9ef097d88ea44cb160a6 (diff) | |
download | whatami-master.tar.gz |
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ int main() { for (size_t bd = 0; bd < device_count; bd++) { struct Block_Device *p; p = block_device[bd]; - printf(" %s /dev/%s (%.2lfGB)\n", p->model, p->path, (double) p->size / 1024 / 1024); + printf(" %s %s (%.2lfGB)\n", p->model, p->path, (double) p->size / 1024 / 1024); } } |