161a162 > char *flag_header; 222d222 < 357d356 < 391,393c390,397 < < asprintf (&output, "%s %s %.0f %s (%.0f%%", < output, --- > > if(disk_result && verbose >= 1) { > asprintf(&flag_header, " %s [", state_text (disk_result)); > } else { > asprintf(&flag_header, ""); > } > asprintf (&output, "%s%s %s %.0f %s (%.0f%%", > output, flag_header, 399c403 < asprintf(&output, "%s inode=-);", output); --- > asprintf(&output, "%s inode=-)%s;", output, (disk_result ? "]" : "")); 401c405 < asprintf(&output, "%s inode=%.0f%%);", output, dfree_inodes_percent ); --- > asprintf(&output, "%s inode=%.0f%%)%s;", output, dfree_inodes_percent, ((disk_result && verbose >= 1) ? "]" : "")); 403c407 < --- > free(flag_header);