From 84d204707fda43f1650880d98d6af83586744d17 Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Tue, 3 Mar 2026 15:49:27 +0100 Subject: [PATCH] fs: Never show progress bar for ntfsresize It shows progress even when only getting the min size info and it needlessly pollutes the log. --- src/plugins/fs/ntfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/fs/ntfs.c b/src/plugins/fs/ntfs.c index 424f6060e..6bc552ee9 100644 --- a/src/plugins/fs/ntfs.c +++ b/src/plugins/fs/ntfs.c @@ -461,7 +461,7 @@ BDFSNtfsInfo* bd_fs_ntfs_get_info (const gchar *device, GError **error) { * Tech category: %BD_FS_TECH_NTFS-%BD_FS_TECH_MODE_RESIZE */ guint64 bd_fs_ntfs_get_min_size (const gchar *device, GError **error) { - const gchar *args[4] = {"ntfsresize", "--info", device, NULL}; + const gchar *args[5] = {"ntfsresize", "--no-progress-bar", "--info", device, NULL}; gboolean success = FALSE; gchar *output = NULL; gchar **lines = NULL;