From 4897914ecac7328e6aa725c5d27a45aae211c074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 25 Feb 2004 15:25:07 +0000 Subject: [PATCH] Accidently added only an int32 for the size, not an int64. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6738 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/diskprobe/DataEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/diskprobe/DataEditor.cpp b/src/apps/diskprobe/DataEditor.cpp index 3a589083fe..10b513c1a6 100644 --- a/src/apps/diskprobe/DataEditor.cpp +++ b/src/apps/diskprobe/DataEditor.cpp @@ -600,7 +600,7 @@ DataEditor::SendNotices(DataChange *change) // update observer BMessage update; update.AddInt64("offset", offset); - update.AddInt32("size", size); + update.AddInt64("size", size); SendNotices(kMsgDataEditorUpdate, &update); }