Explorar el Código

trivial fix of data type (duration is typedefed as double)

Thomas Bender hace 6 años
padre
commit
04fe779360
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      plugins/ua_config_default.c

+ 1 - 1
plugins/ua_config_default.c

@@ -39,7 +39,7 @@ UA_UINT32RANGE(UA_UInt32 min, UA_UInt32 max) {
 }
 
 static UA_INLINE UA_DurationRange
-UA_DURATIONRANGE(UA_Double min, UA_Double max) {
+UA_DURATIONRANGE(UA_Duration min, UA_Duration max) {
     UA_DurationRange range = {min, max};
     return range;
 }