Fixed cut&paste typo.

This commit is contained in:
Alexandre Julliard 2000-09-06 19:53:58 +00:00
parent 3d2f32dcfb
commit 5bdf9b4c10

View file

@ -577,7 +577,7 @@ static ATOM ATOM_FindAtomA( LPCSTR str, BOOL local )
struct find_atom_request *req = server_alloc_req( sizeof(*req), len * sizeof(WCHAR) );
MultiByteToWideChar( CP_ACP, 0, str, strlen(str), server_data_ptr(req), len );
req->local = local;
if (!server_call( REQ_ADD_ATOM )) atom = req->atom + MIN_STR_ATOM;
if (!server_call( REQ_FIND_ATOM )) atom = req->atom + MIN_STR_ATOM;
}
SERVER_END_REQ;
}