From 5bdf9b4c10b305ac3f1b7531819d2b65951e92fa Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 6 Sep 2000 19:53:58 +0000 Subject: [PATCH] Fixed cut&paste typo. --- memory/atom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memory/atom.c b/memory/atom.c index db4eaccac55..ee5c473904f 100644 --- a/memory/atom.c +++ b/memory/atom.c @@ -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; }