aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 0486f11..60cd05a 100644
--- a/main.c
+++ b/main.c
@@ -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);
}
}