﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2094	Hex() returns incorrect values	SilentButeo2		"running next script gives incorrect values (always expecting 4)


{{{
$_result_ = ""01020304""
 MsgBox(0,"""",StringLen($_result_)/2)			; -> result 4
 MsgBox(0,"""",Hex(StringLen($_result_)/2,2))		; -> result 00
 MsgBox(0,"""",Hex(8/2,2))				; -> result 00
 MsgBox(0,"""",Hex(Int(8/2),2))				; -> result 04


  MsgBox(0,"""",StringLen($_result_)/2)			; -> result 4
 MsgBox(0,"""",Hex(StringLen($_result_)/2))		; -> result 4010000000000000
 MsgBox(0,"""",Hex(8/2))					; -> result 4010000000000000
 MsgBox(0,"""",Hex(Int(8/2)))				; -> result 00000004
}}}
"	Bug	closed		AutoIt	3.3.8.0	None	No Bug	Hex	
