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
This commit is contained in:
Rene Gollent
2010-09-14 12:51:05 +00:00
parent 5021eb2421
commit 814fddc8bf
+1 -1
View File
@@ -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;