mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +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); | ||||
| 		return -1; | ||||
| 	} | ||||
| 
 | ||||
| 	for (DWORD i = 0; i < count; ++i) { | ||||
| 	DWORD i; | ||||
| 	for (i = 0; i < count; ++i) { | ||||
| 		// Get the value name, data and type.
 | ||||
| 		char name[512], data[512]; | ||||
| 		DWORD name_len = sizeof (name); | ||||
|  | @ -379,7 +379,7 @@ int enumerate_devices (device_callback_t callback, void *userdata) | |||
| 
 | ||||
| 		callback (data, userdata); | ||||
| 		index++; | ||||
| 		if (is_default_dive_computer_device(filename)) | ||||
| 		if (is_default_dive_computer_device(name)) | ||||
| 			index = i; | ||||
| 	} | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue