From 64a8eb7a027e56594448d9845a3d8958df606724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sat, 25 Jul 2009 16:51:27 +0000 Subject: [PATCH] Patch by Jeroen Oortwijn: Remove additional space from error message. Thanks a lot! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31751 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/drivesetup/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/drivesetup/MainWindow.cpp b/src/apps/drivesetup/MainWindow.cpp index 9318b7d0a6..0a4b4e6e64 100644 --- a/src/apps/drivesetup/MainWindow.cpp +++ b/src/apps/drivesetup/MainWindow.cpp @@ -573,7 +573,7 @@ MainWindow::_DisplayPartitionError(BString _message, if (partition && _message.FindFirst("%s") >= 0) { BString name; - name << " \"" << partition->ContentName() << "\""; + name << "\"" << partition->ContentName() << "\""; sprintf(message, _message.String(), name.String()); } else { _message.ReplaceAll("%s", "");