1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 20:12:48 -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

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