Commit 5bdf9b4c authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed cut&paste typo.

parent 3d2f32dc
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment