1
0
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:
Jacob Nevins
2005-03-02 15:53:50 +00:00
parent 2dfee45b91
commit 3fc33c4118
3 changed files with 4 additions and 4 deletions

View File

@ -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);