From 814fddc8bf2dfaf62616950a2ebfa0bfcc3436cc Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Tue, 14 Sep 2010 12:51:05 +0000 Subject: [PATCH] Patch by diver: increase the size of the buffer used to format the partition size, since it's insufficient for some languages. Resolves #6603. Thanks! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38647 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/installer/WorkerThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/installer/WorkerThread.cpp b/src/apps/installer/WorkerThread.cpp index 581ae9d4b5..32026f03ef 100644 --- a/src/apps/installer/WorkerThread.cpp +++ b/src/apps/installer/WorkerThread.cpp @@ -520,7 +520,7 @@ static void make_partition_label(BPartition* partition, char* label, char* menuLabel, bool showContentType) { - char size[15]; + char size[20]; string_for_size(partition->Size(), size, sizeof(size)); BPath path;