Insignifican change. Read uint32 instead of int32.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12108 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Adi Oanca 2005-03-28 21:26:35 +00:00
parent e33b90ea35
commit 256c1b1502

View File

@ -343,10 +343,10 @@ int32 ServerApp::MonitorApp(void *data)
port_id replyport = -1;
msgqueue.Read<BRect>(&frame);
msgqueue.Read<int32>((int32*)&look);
msgqueue.Read<int32>((int32*)&feel);
msgqueue.Read<int32>((int32*)&flags);
msgqueue.Read<int32>((int32*)&wkspaces);
msgqueue.Read<uint32>(&look);
msgqueue.Read<uint32>(&feel);
msgqueue.Read<uint32>(&flags);
msgqueue.Read<uint32>(&wkspaces);
msgqueue.Read<int32>(&token);
msgqueue.Read<port_id>(&sendPort);
msgqueue.Read<port_id>(&looperPort);