Changes between Version 2 and Version 3 of Ticket #18623
- Timestamp:
- Oct 7, 2023, 10:00:37 PM (14 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18623 – Description
v2 v3 38 38 {{{ 39 39 diff --git a/src/bin/df.cpp b/src/bin/df.cpp 40 index c0fce748.. 6dd73e9710064440 index c0fce748..9ae0ca4b 100644 41 41 --- a/src/bin/df.cpp 42 42 +++ b/src/bin/df.cpp … … 46 46 printf(" Mounted at: %s\n", mount); 47 47 - else { 48 + else 49 printf("%-17s ", mount); 48 - printf("%-17s ", mount); 50 49 - if (strlen(mount) > 17) 51 50 - printf("\n%17s ", ""); 52 51 - } 52 + else 53 + printf("%s ", mount); 53 54 } 54 55