fixed a bug which caused one perhaps the most helpful error message ever from gcc: 101: invalid reference to a member function name, did you forget the ()?

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6261 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty
2004-01-24 22:56:15 +00:00
parent 1421ba0668
commit 2aa106d6b7
+1 -1
View File
@@ -98,7 +98,7 @@ QueryServer(BMessage &request, BMessage &reply)
if (status != B_OK) { if (status != B_OK) {
ERROR("QueryServer: SendMessage failed, error 0x%08lx (%s)\n", status, strerror(status)); ERROR("QueryServer: SendMessage failed, error 0x%08lx (%s)\n", status, strerror(status));
DEBUG_ONLY(request.PrintToStream()); DEBUG_ONLY(request.PrintToStream());
DEBUG_ONLY(reply.PrintToStream); DEBUG_ONLY(reply.PrintToStream());
} }
return status; return status;
} }