From: Maciej Wereski Date: Fri, 6 Oct 2017 15:51:27 +0000 (+0200) Subject: Make uint types have explicit sizes X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=125355e5e695b98c0d779eff9e52e26b915b3a67;p=tools%2Fboruta.git Make uint types have explicit sizes Change-Id: Ibed42f8862c3f21a8a29c477427950b879fabdc1 Signed-off-by: Maciej Wereski Reviewed-on: https://mcdsrvbld02.digital.local/review/49556 Reviewed-by: Lukasz Wojciechowski --- diff --git a/boruta.go b/boruta.go index ac7d76e..129ebcf 100644 --- a/boruta.go +++ b/boruta.go @@ -65,10 +65,10 @@ const ( type Capabilities map[string]string // ReqID refers to the Request created by the User. -type ReqID uint +type ReqID uint64 // Priority is the importance of the Request. Lower - more important. -type Priority uint +type Priority uint8 // UserInfo is a definition of the User or the Admin. type UserInfo struct{}