mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-06 14:02:47 -05:00
More confusing "(BYTE *) & val" style punctuation.
I blame GNU indent, although its confusion is understandable. [originally from svn r5432]
This commit is contained in:
@ -128,7 +128,7 @@ int agent_query(void *in, int inlen, void **out, int *outlen,
|
||||
* query is required to be synchronous) or CreateThread failed.
|
||||
* Either way, we need a synchronous request.
|
||||
*/
|
||||
id = SendMessage(hwnd, WM_COPYDATA, (WPARAM) NULL, (LPARAM) & cds);
|
||||
id = SendMessage(hwnd, WM_COPYDATA, (WPARAM) NULL, (LPARAM) &cds);
|
||||
if (id > 0) {
|
||||
retlen = 4 + GET_32BIT(p);
|
||||
ret = snewn(retlen, unsigned char);
|
||||
|
Reference in New Issue
Block a user