More confusing "(BYTE *) & val" style punctuation.
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 2 Mar 2005 15:53:50 +0000 (15:53 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 2 Mar 2005 15:53:50 +0000 (15:53 +0000)
I blame GNU indent, although its confusion is understandable.

git-svn-id: svn://svn.tartarus.org/sgt/putty@5432 cda61777-01e9-0310-a592-d414129be87e

windows/winpgen.c
windows/winpgntc.c
windows/winstore.c

index d027fc7..a3d97aa 100644 (file)
@@ -662,7 +662,7 @@ void load_key_file(HWND hwnd, struct MainDlgState *state,
            dlgret = DialogBoxParam(hinst,
                                    MAKEINTRESOURCE(210),
                                    NULL, PassphraseProc,
-                                   (LPARAM) & pps);
+                                   (LPARAM) &pps);
            if (!dlgret) {
                ret = -2;
                break;
index f647eef..3ab81e7 100644 (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);
index 743283f..2e812c3 100644 (file)
@@ -104,7 +104,7 @@ void write_setting_i(void *handle, const char *key, int value)
 {
     if (handle)
        RegSetValueEx((HKEY) handle, key, 0, REG_DWORD,
-                     (CONST BYTE *) & value, sizeof(value));
+                     (CONST BYTE *) &value, sizeof(value));
 }
 
 void close_settings_w(void *handle)
@@ -157,7 +157,7 @@ int read_setting_i(void *handle, const char *key, int defvalue)
 
     if (!handle ||
        RegQueryValueEx((HKEY) handle, key, 0, &type,
-                       (BYTE *) & val, &size) != ERROR_SUCCESS ||
+                       (BYTE *) &val, &size) != ERROR_SUCCESS ||
        size != sizeof(val) || type != REG_DWORD)
        return defvalue;
     else