mirror of
				https://github.com/rtlsdrblog/rtl-sdr-blog.git
				synced 2025-10-31 00:48:08 +01:00 
			
		
		
		
	tuner_fc0013: get rid of compiler warning
"this decimal constant is unsigned only in ISO C90" Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
		| @@ -305,7 +305,7 @@ int fc0013_set_params(void *dev, uint32_t freq, uint32_t bandwidth) | ||||
|  | ||||
| 	f_vco = freq * multi; | ||||
|  | ||||
| 	if (f_vco >= 3060000000) { | ||||
| 	if (f_vco >= 3060000000U) { | ||||
| 		reg[6] |= 0x08; | ||||
| 		vco_select = 1; | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user