From e28b48e2f765714047c2463c70f044e34f037611 Mon Sep 17 00:00:00 2001 From: beveloper Date: Tue, 29 Oct 2002 18:50:33 +0000 Subject: [PATCH] This small change fixes a major problem! A class that has a different size than the original is not compatible. Thus, every application compiled with this header would crash on BeOS. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1761 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/app/Invoker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/os/app/Invoker.h b/headers/os/app/Invoker.h index 96b5cd2604..ee62279982 100644 --- a/headers/os/app/Invoker.h +++ b/headers/os/app/Invoker.h @@ -113,7 +113,7 @@ private: BHandler *fReplyTo; bigtime_t fTimeout; uint32 fNotifyKind; - uint32 _reserved[2]; // to be able to keep binary compatibility + uint32 _reserved[1]; // to be able to keep binary compatibility }; //------------------------------------------------------------------------------