mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
Fix Windows compile
When submitting commit 8f33b81de0f9 ("implement device probe in C"), Danilo explicitly asked me to make sure this compiles / works on Windows and Mac - and I promptly forgot to do so. Robert fixed the Mac build, this now at least compiles under Windows (but it's still untested). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
fb0ecf6cd6
commit
a7ceb695f5
1 changed files with 3 additions and 3 deletions
|
@ -351,8 +351,8 @@ int enumerate_devices (device_callback_t callback, void *userdata)
|
||||||
RegCloseKey(hKey);
|
RegCloseKey(hKey);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
DWORD i;
|
||||||
for (DWORD i = 0; i < count; ++i) {
|
for (i = 0; i < count; ++i) {
|
||||||
// Get the value name, data and type.
|
// Get the value name, data and type.
|
||||||
char name[512], data[512];
|
char name[512], data[512];
|
||||||
DWORD name_len = sizeof (name);
|
DWORD name_len = sizeof (name);
|
||||||
|
@ -379,7 +379,7 @@ int enumerate_devices (device_callback_t callback, void *userdata)
|
||||||
|
|
||||||
callback (data, userdata);
|
callback (data, userdata);
|
||||||
index++;
|
index++;
|
||||||
if (is_default_dive_computer_device(filename))
|
if (is_default_dive_computer_device(name))
|
||||||
index = i;
|
index = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue