Add extra line about src files are part of RIC platform project
[ric-plt/sdlgo.git] / internal / sdlgoredis / sdlgoredis.go
index 8e2a2ef..574e7b0 100644 (file)
    limitations under the License.
 */
 
+/*
+ * This source code is part of the near-RT RIC (RAN Intelligent Controller)
+ * platform project (RICP).
+ */
+
 package sdlgoredis
 
 import (
@@ -92,7 +97,7 @@ func checkIntResultAndError(result interface{}, err error) (bool, error) {
        if err != nil {
                return false, err
        }
-       if result.(int64) == int64(1) {
+       if result.(int) == int(1) {
                return true, nil
        }
        return false, nil