skopeo-1.18.0-1.fc43

List of Findings

Error: SHELLCHECK_WARNING (CWE-398): [#def1]
/usr/share/skopeo/test/system/010-inspect.bats:39:18: warning[SC2038]: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames.
#   37|       # but not the digest of the config blob ($config_digest), if any.
#   38|       layers=$(jq -r '.Layers' <<<"$inspect_local")
#   39|->     for sha in $(find $workdir -type f | xargs -l1 basename | grep -E '^[0-9a-f]{64}$'); do
#   40|           if [ "sha256:$sha" != "$config_digest" ]; then
#   41|               expect_output --from="$layers" --substring "sha256:$sha" \

Error: SHELLCHECK_WARNING (CWE-88): [#def2]
/usr/share/skopeo/test/system/010-inspect.bats:86:19: error[SC2068]: Double quote array expansions to avoid re-splitting elements.
#   84|       check_array=(FGC=f31 DISTTAG=f31container)
#   85|       remote=$(jq '.Env[]' <<<"$inspect_remote")
#   86|->     for substr in ${check_array[@]}; do
#   87|           expect_output --from="$remote" --substring "$substr"
#   88|       done

Error: SHELLCHECK_WARNING (CWE-571): [#def3]
/usr/share/skopeo/test/system/020-copy.bats:56:11: warning[SC2155]: Declare and assign separately to avoid masking return values.
#   54|   
#   55|       # zstd magic number
#   56|->     local magic=$(printf "\x28\xb5\x2f\xfd")
#   57|   
#   58|       # Check there is at least one file that has the zstd magic number as the first 4 bytes

Error: SHELLCHECK_WARNING (CWE-156): [#def4]
/usr/share/skopeo/test/system/050-signing.bats:20:10: warning[SC2046]: Quote this to prevent word splitting.
#   18|   
#   19|       PASSPHRASE_FILE_WRONG=$TESTDIR/passphrase-file-wrong
#   20|->     echo $(random_string 10) > $PASSPHRASE_FILE_WRONG
#   21|   
#   22|       # gpg on f30 needs this, otherwise:

Error: SHELLCHECK_WARNING (CWE-563): [#def5]
/usr/share/skopeo/test/system/050-signing.bats:117:25: warning[SC2034]: comments appears unused. Verify use (or export if used externally).
#  115|       # Push a bunch of images. Do so *without* --policy flag; this lets us
#  116|       # sign or not, creating images that will or won't conform to policy.
#  117|->     while read path sig comments; do
#  118|           local sign_opt=
#  119|           if [[ $sig != '-' ]]; then

Error: SHELLCHECK_WARNING (CWE-398): [#def6]
/usr/share/skopeo/test/system/050-signing.bats:210:5: warning[SC2010]: Don't use ls | grep. Use a glob or a for loop with a condition to allow non-alphanumeric filenames.
#  208|                   docker://localhost:5000/myns/alice:signed \
#  209|                   dir:$TESTDIR/busybox-unsigned
#  210|->     ls $TESTDIR/busybox-signed | grep "signature"
#  211|       [ -z "$(ls $TESTDIR/busybox-unsigned | grep "signature")" ]
#  212|   }

Error: SHELLCHECK_WARNING (CWE-398): [#def7]
/usr/share/skopeo/test/system/050-signing.bats:211:13: warning[SC2010]: Don't use ls | grep. Use a glob or a for loop with a condition to allow non-alphanumeric filenames.
#  209|                   dir:$TESTDIR/busybox-unsigned
#  210|       ls $TESTDIR/busybox-signed | grep "signature"
#  211|->     [ -z "$(ls $TESTDIR/busybox-unsigned | grep "signature")" ]
#  212|   }
#  213|   

Error: SHELLCHECK_WARNING (CWE-670): [#def8]
/usr/share/skopeo/test/system/helpers.bash:4:46: warning[SC2128]: Expanding an array without an index only gives the first element.
#    2|   
#    3|   # Directory containing system test sources
#    4|-> TEST_SOURCE_DIR=${TEST_SOURCE_DIR:-$(dirname ${BASH_SOURCE})}
#    5|   
#    6|   # Skopeo executable

Error: SHELLCHECK_WARNING (CWE-457): [#def9]
/usr/share/skopeo/test/system/helpers.bash:88:11: warning[SC2154]: status is referenced but not assigned.
#   86|           echo "$output"
#   87|       fi
#   88|->     if [ "$status" -ne 0 ]; then
#   89|           echo -n "[ rc=$status ";
#   90|           if [ -n "$expected_rc" ]; then

Error: SHELLCHECK_WARNING (CWE-477): [#def10]
/usr/share/skopeo/test/system/helpers.bash:100:28: warning[SC2166]: Prefer [ p ] || [ q ] as [ p -o q ] is not well defined.
#   98|       fi
#   99|   
#  100|->     if [ "$status" -eq 124 -o "$status" -eq 137 ]; then
#  101|           # FIXME: 'timeout -v' requires coreutils-8.29; travis seems to have
#  102|           #        an older version. If/when travis updates, please add -v

Error: SHELLCHECK_WARNING (CWE-571): [#def11]
/usr/share/skopeo/test/system/helpers.bash:174:15: warning[SC2155]: Declare and assign separately to avoid masking return values.
#  172|       local opt
#  173|       for opt; do
#  174|->         local value=$(expr "$opt" : '[^=]*=\(.*\)')
#  175|           case "$opt" in
#  176|               --from=*)       actual="$value";   shift;;

Error: SHELLCHECK_WARNING (CWE-457): [#def12]
/usr/share/skopeo/test/system/helpers.bash:226:19: warning[SC2154]: lines is referenced but not assigned (did you mean 'line'?).
#  224|       local testname="${2:-${MOST_RECENT_SKOPEO_COMMAND:-[no test name given]}}"
#  225|   
#  226|->     local actual="${#lines[@]}"
#  227|       if [ "$actual" -eq "$expect" ]; then
#  228|           return

Error: SHELLCHECK_WARNING (CWE-571): [#def13]
/usr/share/skopeo/test/system/helpers.bash:273:15: warning[SC2155]: Declare and assign separately to avoid masking return values.
#  271|       local opt
#  272|       for opt; do
#  273|->         local value=$(expr "$opt" : '[^=]*=\(.*\)')
#  274|           case "$opt" in
#  275|               --port=*)           port="$value";          shift;;

Error: SHELLCHECK_WARNING (CWE-140): [#def14]
/usr/share/skopeo/test/system/helpers.bash:293:27: warning[SC2206]: Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
#  291|       mkdir -p $AUTHDIR
#  292|   
#  293|->     local -a reg_args=(-v $AUTHDIR:/auth:Z -p $port:5000)
#  294|       if [[ "$enable_delete" == "true" ]]; then
#  295|           reg_args+=( -e REGISTRY_STORAGE_DELETE_ENABLED=true)

Error: SHELLCHECK_WARNING (CWE-140): [#def15]
/usr/share/skopeo/test/system/helpers.bash:293:47: warning[SC2206]: Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
#  291|       mkdir -p $AUTHDIR
#  292|   
#  293|->     local -a reg_args=(-v $AUTHDIR:/auth:Z -p $port:5000)
#  294|       if [[ "$enable_delete" == "true" ]]; then
#  295|           reg_args+=( -e REGISTRY_STORAGE_DELETE_ENABLED=true)

Error: SHELLCHECK_WARNING: [#def16]
/usr/share/skopeo/test/system/make-noarch-manifest:14:30: warning[SC3020]: In POSIX sh, &> is undefined.
#   12|   
#   13|   # (In case older image exists from a prior run)
#   14|-> buildah rmi $imgname:$imgtag &>/dev/null || true
#   15|   
#   16|   #

Error: COMPILER_WARNING: [#def17] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/completed:1:16: error[error]: '__cgo__2' undeclared here (not in a function); did you mean '__cgo__1'?

Error: COMPILER_WARNING: [#def18] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:1:63: error[error]: invalid operands to binary * (have 'char * (*)(_GoString_)' and 'int')

Error: COMPILER_WARNING: [#def19] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:2:60: error[error]: invalid operands to binary * (have 'void (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def20] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:2:66: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def21] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:3:60: error[error]: invalid operands to binary * (have 'void (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def22] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:3:65: error[error]: invalid operands to binary * (have 'struct subid_range (*)(struct subid_range *, int)' and 'int')

Error: COMPILER_WARNING: [#def23] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:4:59: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def24] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:4:65: error[error]: invalid operands to binary * (have 'struct subid_range (*)(struct subid_range *, int)' and 'int')

Error: COMPILER_WARNING: [#def25] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:5:59: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def26] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:5:76: error[error]: invalid operands to binary * (have 'int (*)(const char *, struct subid_range **)' and 'int')

Error: COMPILER_WARNING: [#def27] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:6:61: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def28] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:6:76: error[error]: invalid operands to binary * (have 'int (*)(const char *, struct subid_range **)' and 'int')

Error: COMPILER_WARNING: [#def29] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:7:65: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def30] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:8:76: error[error]: invalid operands to binary * (have 'int (*)(const char *, struct subid_range **)' and 'int')

Error: COMPILER_WARNING: [#def31] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-int-const:9:76: error[error]: invalid operands to binary * (have 'int (*)(const char *, struct subid_range **)' and 'int')

Error: COMPILER_WARNING: [#def32] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:1:67: error[error]: incompatible types when initializing type 'double' using type 'char * (*)(_GoString_)'

Error: COMPILER_WARNING: [#def33] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:2:67: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *)'

Error: COMPILER_WARNING: [#def34] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:2:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def35] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:3:67: error[error]: incompatible types when initializing type 'double' using type 'struct subid_range (*)(struct subid_range *, int)'

Error: COMPILER_WARNING: [#def36] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:3:67: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *)'

Error: COMPILER_WARNING: [#def37] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:4:67: error[error]: incompatible types when initializing type 'double' using type 'struct subid_range (*)(struct subid_range *, int)'

Error: COMPILER_WARNING: [#def38] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:4:72: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def39] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:5:67: error[error]: incompatible types when initializing type 'double' using type 'int (*)(const char *, struct subid_range **)'

Error: COMPILER_WARNING: [#def40] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:5:72: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def41] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:6:67: error[error]: incompatible types when initializing type 'double' using type 'int (*)(const char *, struct subid_range **)'

Error: COMPILER_WARNING: [#def42] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:6:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def43] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:7:78: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def44] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:8:67: error[error]: incompatible types when initializing type 'double' using type 'int (*)(const char *, struct subid_range **)'

Error: COMPILER_WARNING: [#def45] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-num-const:9:67: error[error]: incompatible types when initializing type 'double' using type 'int (*)(const char *, struct subid_range **)'

Error: COMPILER_WARNING: [#def46] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:1:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def47] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:2:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def48] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:2:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def49] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:3:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def50] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:4:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def51] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:4:72: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def52] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:5:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def53] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:5:72: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def54] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:6:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def55] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:6:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def56] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:7:78: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def57] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:8:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def58] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-str-lit:9:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def59] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-type:1:35: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def60] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-type:2:32: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def61] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-type:3:32: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def62] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-type:3:37: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def63] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-type:4:37: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def64] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-type:5:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def65] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-type:6:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def66] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-type:8:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def67] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/idtools/not-type:9:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def68] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/completed:1:16: error[error]: '__cgo__2' undeclared here (not in a function); did you mean '__cgo__1'?

Error: COMPILER_WARNING: [#def69] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-int-const:1:63: error[error]: invalid operands to binary * (have 'char * (*)(_GoString_)' and 'int')

Error: COMPILER_WARNING: [#def70] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-int-const:2:64: error[error]: invalid operands to binary * (have '_GoString_ (*)(char *)' and 'int')

Error: COMPILER_WARNING: [#def71] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-int-const:3:60: error[error]: invalid operands to binary * (have 'void (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def72] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-int-const:3:66: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def73] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-int-const:4:60: error[error]: invalid operands to binary * (have 'void (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def74] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-int-const:4:62: error[error]: invalid operands to binary * (have 'char * (*)(const char *)' and 'int')

Error: COMPILER_WARNING: [#def75] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-int-const:5:62: error[error]: invalid operands to binary * (have 'char * (*)(const char *)' and 'int')

Error: COMPILER_WARNING: [#def76] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-int-const:6:61: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def77] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-int-const:7:65: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def78] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-num-const:1:67: error[error]: incompatible types when initializing type 'double' using type 'char * (*)(_GoString_)'

Error: COMPILER_WARNING: [#def79] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-num-const:2:67: error[error]: incompatible types when initializing type 'double' using type '_GoString_ (*)(char *)'

Error: COMPILER_WARNING: [#def80] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-num-const:3:67: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *)'

Error: COMPILER_WARNING: [#def81] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-num-const:3:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def82] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-num-const:4:67: error[error]: incompatible types when initializing type 'double' using type 'char * (*)(const char *)'

Error: COMPILER_WARNING: [#def83] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-num-const:4:67: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *)'

Error: COMPILER_WARNING: [#def84] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-num-const:5:67: error[error]: incompatible types when initializing type 'double' using type 'char * (*)(const char *)'

Error: COMPILER_WARNING: [#def85] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-num-const:6:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def86] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-num-const:7:78: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def87] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-str-lit:1:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def88] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-str-lit:2:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def89] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-str-lit:3:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def90] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-str-lit:3:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def91] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-str-lit:4:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def92] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-str-lit:5:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def93] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-str-lit:6:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def94] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-str-lit:7:78: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def95] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-type:1:35: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def96] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-type:2:36: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def97] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-type:3:32: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def98] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-type:4:32: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def99] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-type:4:34: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def100] [important]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/not-type:5:34: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: GCC_ANALYZER_WARNING (CWE-775): [#def101]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:118:20: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘open(list, 0)’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:275:12: enter_function: entry to ‘containers_reexec’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:279:16: call_function: calling ‘parse_proc_stringlist’ from ‘containers_reexec’
#  116|   		new_size = used + BUFSTEP;
#  117|   		new_buf = realloc(buf, new_size);
#  118|-> 		if (new_buf == NULL) {
#  119|   			free(buf);
#  120|   			fprintf(stderr, "realloc(%ld): out of memory\n", (long)(size + BUFSTEP));

Error: GCC_ANALYZER_WARNING (CWE-775): [#def102]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:125:24: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘open(list, 0)’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:275:12: enter_function: entry to ‘containers_reexec’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:279:16: call_function: calling ‘parse_proc_stringlist’ from ‘containers_reexec’
#  123|   		buf = new_buf;
#  124|   		size = new_size;
#  125|-> 		memset(buf + used, '\0', size - used);
#  126|   		n = read(fd, buf + used, size - used - 1);
#  127|   		if (n < 0) {

Error: GCC_ANALYZER_WARNING (CWE-401): [#def103]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:125:24: warning[-Wanalyzer-malloc-leak]: leak of ‘parse_proc_stringlist("/proc/self/cmdline")’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:300:6: enter_function: entry to ‘_containers_unshare’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:305:17: call_function: calling ‘_containers_unshare_parse_envint’ from ‘_containers_unshare’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:305:17: return_function: returning to ‘_containers_unshare’ from ‘_containers_unshare_parse_envint’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:306:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:309:13: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:318:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:327:22: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:328:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:336:15: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:337:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:343:16: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:344:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:350:16: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:351:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:357:12: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:373:13: call_function: calling ‘containers_reexec’ from ‘_containers_unshare’
#  123|   		buf = new_buf;
#  124|   		size = new_size;
#  125|-> 		memset(buf + used, '\0', size - used);
#  126|   		n = read(fd, buf + used, size - used - 1);
#  127|   		if (n < 0) {

Error: GCC_ANALYZER_WARNING (CWE-401): [#def104]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:128:25: warning[-Wanalyzer-malloc-leak]: leak of ‘buf’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:275:12: enter_function: entry to ‘containers_reexec’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:279:16: call_function: calling ‘parse_proc_stringlist’ from ‘containers_reexec’
#  126|   		n = read(fd, buf + used, size - used - 1);
#  127|   		if (n < 0) {
#  128|-> 			fprintf(stderr, "read(): %m\n");
#  129|   			return NULL;
#  130|   		}

Error: GCC_ANALYZER_WARNING (CWE-401): [#def105]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:128:25: warning[-Wanalyzer-malloc-leak]: leak of ‘new_buf’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:275:12: enter_function: entry to ‘containers_reexec’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:279:16: call_function: calling ‘parse_proc_stringlist’ from ‘containers_reexec’
#  126|   		n = read(fd, buf + used, size - used - 1);
#  127|   		if (n < 0) {
#  128|-> 			fprintf(stderr, "read(): %m\n");
#  129|   			return NULL;
#  130|   		}

Error: GCC_ANALYZER_WARNING (CWE-401): [#def106]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:154:9: warning[-Wanalyzer-malloc-leak]: leak of ‘buf’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:275:12: enter_function: entry to ‘containers_reexec’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:279:16: call_function: calling ‘parse_proc_stringlist’ from ‘containers_reexec’
#  152|   		}
#  153|   	}
#  154|-> 	ret[i] = NULL;
#  155|   	return ret;
#  156|   }

Error: GCC_ANALYZER_WARNING (CWE-401): [#def107]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:154:9: warning[-Wanalyzer-malloc-leak]: leak of ‘new_buf’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:275:12: enter_function: entry to ‘containers_reexec’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:279:16: call_function: calling ‘parse_proc_stringlist’ from ‘containers_reexec’
#  152|   		}
#  153|   	}
#  154|-> 	ret[i] = NULL;
#  155|   	return ret;
#  156|   }

Error: GCC_ANALYZER_WARNING (CWE-401): [#def108]
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:291:12: warning[-Wanalyzer-malloc-leak]: leak of ‘parse_proc_stringlist("/proc/self/cmdline")’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:300:6: enter_function: entry to ‘_containers_unshare’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:305:17: call_function: calling ‘_containers_unshare_parse_envint’ from ‘_containers_unshare’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:305:17: return_function: returning to ‘_containers_unshare’ from ‘_containers_unshare_parse_envint’
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:306:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:309:13: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:318:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:327:22: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:328:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:336:15: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:337:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:343:16: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:344:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:350:16: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:351:12: branch_false: following ‘false’ branch...
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:357:12: branch_false: ...to here
skopeo-1.18.0/vendor/github.com/containers/storage/pkg/unshare/unshare.c:373:13: call_function: calling ‘containers_reexec’ from ‘_containers_unshare’
#  289|   		return fd;
#  290|   
#  291|-> 	if (fexecve(fd, argv, environ) == -1) {
#  292|   		close(fd);
#  293|   		fprintf(stderr, "Error during reexec(...): %m\n");

Error: COMPILER_WARNING: [#def109] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/completed:1:16: error[error]: '__cgo__2' undeclared here (not in a function); did you mean '__cgo__1'?

Error: COMPILER_WARNING: [#def110] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:1:60: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def111] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:1:63: error[error]: invalid operands to binary * (have 'char * (*)(_GoString_)' and 'int')

Error: COMPILER_WARNING: [#def112] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:2:62: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def113] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:2:63: error[error]: invalid operands to binary * (have '_GoBytes_ (*)(void *, int)' and 'int')

Error: COMPILER_WARNING: [#def114] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:2:66: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def115] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:3:59: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def116] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:3:60: error[error]: invalid operands to binary * (have 'void (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def117] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:3:64: error[error]: invalid operands to binary * (have '_GoString_ (*)(char *)' and 'int')

Error: COMPILER_WARNING: [#def118] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:4:59: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def119] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:4:65: error[error]: invalid operands to binary * (have '_GoString_ (*)(char *, int)' and 'int')

Error: COMPILER_WARNING: [#def120] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:4:70: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *, void *, int)' and 'int')

Error: COMPILER_WARNING: [#def121] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:5:61: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def122] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:5:70: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *, char *, int)' and 'int')

Error: COMPILER_WARNING: [#def123] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:6:65: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def124] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:6:71: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def125] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:6:74: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, int,  void *, int)' and 'int')

Error: COMPILER_WARNING: [#def126] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:7:63: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def127] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:7:69: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def128] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:7:74: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, int,  char *, int)' and 'int')

Error: COMPILER_WARNING: [#def129] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:8:70: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def130] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:8:77: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *, double)' and 'int')

Error: COMPILER_WARNING: [#def131] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:8:80: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *, const char *, int,  int,  uintptr_t,  void (*)(sqlite3_context *, int,  sqlite3_value **), void (*)(sqlite3_context *, int,  sqlite3_value **), void (*)(sqlite3_context *))' {{aka 'int (*)(sqlite3 *, const char *, int,  int,  long unsigned int,  void (*)(sqlite3_context *, int,  sqlite3_value **), void (*)(sqlite3_context *, int,  sqlite3_value **), void (*)(sqlite3_context *))'}} and 'int')

Error: COMPILER_WARNING: [#def132] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:9:70: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *, int,  int)' and 'int')

Error: COMPILER_WARNING: [#def133] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:9:77: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_backup *)' and 'int')

Error: COMPILER_WARNING: [#def134] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:9:83: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *)' and 'int')

Error: COMPILER_WARNING: [#def135] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:10:73: error[error]: invalid operands to binary * (have 'int (*)(const char *, sqlite3 **, int,  const char *)' and 'int')

Error: COMPILER_WARNING: [#def136] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:10:75: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *, int)' and 'int')

Error: COMPILER_WARNING: [#def137] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:10:76: error[error]: invalid operands to binary * (have 'sqlite3_backup * (*)(sqlite3 *, const char *, sqlite3 *, const char *)' and 'int')

Error: COMPILER_WARNING: [#def138] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:11:77: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *, sqlite3_int64)' {{aka 'void (*)(sqlite3_context *, long long int)'}} and 'int')

Error: COMPILER_WARNING: [#def139] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:11:81: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_backup *)' and 'int')

Error: COMPILER_WARNING: [#def140] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:11:85: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *, const char *, int,  sqlite3_stmt **, const char **)' and 'int')

Error: COMPILER_WARNING: [#def141] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:12:76: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *)' and 'int')

Error: COMPILER_WARNING: [#def142] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:12:79: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *)' and 'int')

Error: COMPILER_WARNING: [#def143] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:12:81: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_backup *)' and 'int')

Error: COMPILER_WARNING: [#def144] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:13:76: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_backup *, int)' and 'int')

Error: COMPILER_WARNING: [#def145] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:13:80: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *, int)' and 'int')

Error: COMPILER_WARNING: [#def146] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:13:83: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, long long int *, long long int *)' and 'int')

Error: COMPILER_WARNING: [#def147] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:14:77: error[error]: invalid operands to binary * (have 'int (*)(void *, int,  char *, char *, char *, char *)' and 'int')

Error: COMPILER_WARNING: [#def148] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:15:75: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *, int,  sqlite3_value **)' and 'int')

Error: COMPILER_WARNING: [#def149] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:16:61: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def150] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:17:77: error[error]: invalid operands to binary * (have 'int (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def151] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:18:74: error[error]: invalid operands to binary * (have 'int (*)(void *, int,  char *, int,  char *)' and 'int')

Error: COMPILER_WARNING: [#def152] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:19:71: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *)' and 'int')

Error: COMPILER_WARNING: [#def153] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:20:63: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def154] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:21:61: error[error]: invalid operands to binary * (have 'void (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def155] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:22:60: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def156] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:23:66: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def157] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:24:79: error[error]: invalid operands to binary * (have 'void (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def158] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:25:64: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def159] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:26:82: error[error]: invalid operands to binary * (have 'void * (*)(sqlite3_context *, int)' and 'int')

Error: COMPILER_WARNING: [#def160] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:27:76: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, int,  double)' and 'int')

Error: COMPILER_WARNING: [#def161] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:28:73: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, int,  int)' and 'int')

Error: COMPILER_WARNING: [#def162] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:29:75: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, int,  sqlite3_int64)' {{aka 'int (*)(sqlite3_stmt *, int,  long long int)'}} and 'int')

Error: COMPILER_WARNING: [#def163] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:30:74: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, int)' and 'int')

Error: COMPILER_WARNING: [#def164] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:31:85: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *)' and 'int')

Error: COMPILER_WARNING: [#def165] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:32:85: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, const char *)' and 'int')

Error: COMPILER_WARNING: [#def166] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:33:79: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *)' and 'int')

Error: COMPILER_WARNING: [#def167] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:34:73: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *)' and 'int')

Error: COMPILER_WARNING: [#def168] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:35:76: error[error]: invalid operands to binary * (have 'const void * (*)(sqlite3_stmt *, int)' and 'int')

Error: COMPILER_WARNING: [#def169] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:36:77: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, int)' and 'int')

Error: COMPILER_WARNING: [#def170] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:37:77: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *)' and 'int')

Error: COMPILER_WARNING: [#def171] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:38:80: error[error]: invalid operands to binary * (have 'const char * (*)(sqlite3_stmt *, int)' and 'int')

Error: COMPILER_WARNING: [#def172] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:39:78: error[error]: invalid operands to binary * (have 'double (*)(sqlite3_stmt *, int)' and 'int')

Error: COMPILER_WARNING: [#def173] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:40:77: error[error]: invalid operands to binary * (have 'sqlite3_int64 (*)(sqlite3_stmt *, int)' {{aka 'long long int (*)(sqlite3_stmt *, int)'}} and 'int')

Error: COMPILER_WARNING: [#def174] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:41:76: error[error]: invalid operands to binary * (have 'const char * (*)(sqlite3_stmt *, int)' and 'int')

Error: COMPILER_WARNING: [#def175] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:42:76: error[error]: invalid operands to binary * (have 'const unsigned char * (*)(sqlite3_stmt *, int)' and 'int')

Error: COMPILER_WARNING: [#def176] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:43:76: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *, int)' and 'int')

Error: COMPILER_WARNING: [#def177] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:44:76: error[error]: invalid operands to binary * (have 'void * (*)(sqlite3 *, int (*)(void *), void *)' and 'int')

Error: COMPILER_WARNING: [#def178] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:45:72: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def179] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:46:81: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *, const char *, int,  void *, int (*)(void *, int,  const void *, int,  const void *))' and 'int')

Error: COMPILER_WARNING: [#def180] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:47:76: error[error]: invalid operands to binary * (have 'const char * (*)(sqlite3 *, const char *)' and 'int')

Error: COMPILER_WARNING: [#def181] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:48:72: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *)' and 'int')

Error: COMPILER_WARNING: [#def182] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:49:71: error[error]: invalid operands to binary * (have 'const char * (*)(sqlite3 *)' and 'int')

Error: COMPILER_WARNING: [#def183] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:50:69: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *, const char *, int (*)(void *, int,  char **, char **), void *, char **)' and 'int')

Error: COMPILER_WARNING: [#def184] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:51:81: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *)' and 'int')

Error: COMPILER_WARNING: [#def185] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:52:77: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *, const char *, int,  void *)' and 'int')

Error: COMPILER_WARNING: [#def186] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:53:73: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *)' and 'int')

Error: COMPILER_WARNING: [#def187] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:54:79: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *)' and 'int')

Error: COMPILER_WARNING: [#def188] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:55:70: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def189] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:56:74: error[error]: invalid operands to binary * (have 'void (*)(sqlite3 *)' and 'int')

Error: COMPILER_WARNING: [#def190] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:57:75: error[error]: invalid operands to binary * (have 'const char * (*)(void)' and 'int')

Error: COMPILER_WARNING: [#def191] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:58:82: error[error]: invalid operands to binary * (have 'int (*)(void)' and 'int')

Error: COMPILER_WARNING: [#def192] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:59:70: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *)' and 'int')

Error: COMPILER_WARNING: [#def193] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:60:78: error[error]: invalid operands to binary * (have 'void * (*)(sqlite3 *, void (*)(void *), void *)' and 'int')

Error: COMPILER_WARNING: [#def194] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:61:79: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *, int (*)(void *, int,  const char *, const char *, const char *, const char *), void *)' and 'int')

Error: COMPILER_WARNING: [#def195] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:62:73: error[error]: invalid operands to binary * (have 'const char * (*)(void)' and 'int')

Error: COMPILER_WARNING: [#def196] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:63:69: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def197] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:64:78: error[error]: invalid operands to binary * (have 'int (*)(sqlite3_stmt *)' and 'int')

Error: COMPILER_WARNING: [#def198] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:65:77: error[error]: invalid operands to binary * (have 'int (*)(sqlite3 *)' and 'int')

Error: COMPILER_WARNING: [#def199] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:66:75: error[error]: invalid operands to binary * (have 'int (*)(void)' and 'int')

Error: COMPILER_WARNING: [#def200] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:67:76: error[error]: invalid operands to binary * (have 'void * (*)(sqlite3 *, void (*)(void *, int,  const char *, const char *, sqlite3_int64), void *)' {{aka 'void * (*)(sqlite3 *, void (*)(void *, int,  const char *, const char *, long long int), void *)'}} and 'int')

Error: COMPILER_WARNING: [#def201] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:68:70: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def202] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:69:71: error[error]: invalid operands to binary * (have 'void (*)(sqlite3_context *, int,  sqlite3_value **)' and 'int')

Error: COMPILER_WARNING: [#def203] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:70:66: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def204] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-int-const:71:77: error[error]: invalid operands to binary * (have 'void (*)(void *, int,  char *, char *, sqlite3_int64)' {{aka 'void (*)(void *, int,  char *, char *, long long int)'}} and 'int')

Error: COMPILER_WARNING: [#def205] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:1:67: error[error]: incompatible types when initializing type 'double' using type 'char * (*)(_GoString_)'

Error: COMPILER_WARNING: [#def206] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:1:73: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def207] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:2:67: error[error]: incompatible types when initializing type 'double' using type '_GoBytes_ (*)(void *, int)'

Error: COMPILER_WARNING: [#def208] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:2:75: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def209] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:2:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def210] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:3:67: error[error]: incompatible types when initializing type 'double' using type '_GoString_ (*)(char *)'

Error: COMPILER_WARNING: [#def211] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:3:67: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *)'

Error: COMPILER_WARNING: [#def212] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:3:72: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def213] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:4:67: error[error]: incompatible types when initializing type 'double' using type '_GoString_ (*)(char *, int)'

Error: COMPILER_WARNING: [#def214] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:4:67: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *, void *, int)'

Error: COMPILER_WARNING: [#def215] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:4:72: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def216] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:5:67: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *, char *, int)'

Error: COMPILER_WARNING: [#def217] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:5:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def218] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:6:67: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, int,  void *, int)'

Error: COMPILER_WARNING: [#def219] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:6:78: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def220] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:6:84: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def221] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:7:67: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, int,  char *, int)'

Error: COMPILER_WARNING: [#def222] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:7:76: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def223] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:7:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def224] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:8:67: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *, const char *, int,  int,  uintptr_t,  void (*)(sqlite3_context *, int,  sqlite3_value **), void (*)(sqlite3_context *, int,  sqlite3_value **), void (*)(sqlite3_context *))' {{aka 'int (*)(sqlite3 *, const char *, int,  int,  long unsigned int,  void (*)(sqlite3_context *, int,  sqlite3_value **), void (*)(sqlite3_context *, int,  sqlite3_value **), void (*)(sqlite3_context *))'}}

Error: COMPILER_WARNING: [#def225] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:8:67: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *, double)'

Error: COMPILER_WARNING: [#def226] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:8:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def227] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:9:67: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *, int,  int)'

Error: COMPILER_WARNING: [#def228] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:9:67: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_backup *)'

Error: COMPILER_WARNING: [#def229] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:9:67: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *)'

Error: COMPILER_WARNING: [#def230] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:10:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(const char *, sqlite3 **, int,  const char *)'

Error: COMPILER_WARNING: [#def231] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:10:68: error[error]: incompatible types when initializing type 'double' using type 'sqlite3_backup * (*)(sqlite3 *, const char *, sqlite3 *, const char *)'

Error: COMPILER_WARNING: [#def232] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:10:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *, int)'

Error: COMPILER_WARNING: [#def233] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:11:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *, const char *, int,  sqlite3_stmt **, const char **)'

Error: COMPILER_WARNING: [#def234] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:11:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_backup *)'

Error: COMPILER_WARNING: [#def235] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:11:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *, sqlite3_int64)' {{aka 'void (*)(sqlite3_context *, long long int)'}}

Error: COMPILER_WARNING: [#def236] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:12:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_backup *)'

Error: COMPILER_WARNING: [#def237] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:12:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *)'

Error: COMPILER_WARNING: [#def238] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:12:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *)'

Error: COMPILER_WARNING: [#def239] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:13:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_backup *, int)'

Error: COMPILER_WARNING: [#def240] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:13:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, long long int *, long long int *)'

Error: COMPILER_WARNING: [#def241] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:13:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *, int)'

Error: COMPILER_WARNING: [#def242] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:14:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(void *, int,  char *, char *, char *, char *)'

Error: COMPILER_WARNING: [#def243] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:15:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *, int,  sqlite3_value **)'

Error: COMPILER_WARNING: [#def244] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:16:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def245] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:17:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(void *)'

Error: COMPILER_WARNING: [#def246] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:18:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(void *, int,  char *, int,  char *)'

Error: COMPILER_WARNING: [#def247] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:19:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *)'

Error: COMPILER_WARNING: [#def248] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:20:76: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def249] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:21:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *)'

Error: COMPILER_WARNING: [#def250] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:22:73: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def251] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:23:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def252] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:24:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *)'

Error: COMPILER_WARNING: [#def253] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:25:77: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def254] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:26:68: error[error]: incompatible types when initializing type 'double' using type 'void * (*)(sqlite3_context *, int)'

Error: COMPILER_WARNING: [#def255] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:27:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, int,  double)'

Error: COMPILER_WARNING: [#def256] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:28:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, int,  int)'

Error: COMPILER_WARNING: [#def257] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:29:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, int,  sqlite3_int64)' {{aka 'int (*)(sqlite3_stmt *, int,  long long int)'}}

Error: COMPILER_WARNING: [#def258] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:30:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, int)'

Error: COMPILER_WARNING: [#def259] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:31:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *)'

Error: COMPILER_WARNING: [#def260] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:32:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, const char *)'

Error: COMPILER_WARNING: [#def261] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:33:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *)'

Error: COMPILER_WARNING: [#def262] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:34:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *)'

Error: COMPILER_WARNING: [#def263] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:35:68: error[error]: incompatible types when initializing type 'double' using type 'const void * (*)(sqlite3_stmt *, int)'

Error: COMPILER_WARNING: [#def264] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:36:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, int)'

Error: COMPILER_WARNING: [#def265] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:37:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *)'

Error: COMPILER_WARNING: [#def266] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:38:68: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(sqlite3_stmt *, int)'

Error: COMPILER_WARNING: [#def267] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:39:68: error[error]: incompatible types when initializing type 'double' using type 'double (*)(sqlite3_stmt *, int)'

Error: COMPILER_WARNING: [#def268] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:40:68: error[error]: incompatible types when initializing type 'double' using type 'sqlite3_int64 (*)(sqlite3_stmt *, int)' {{aka 'long long int (*)(sqlite3_stmt *, int)'}}

Error: COMPILER_WARNING: [#def269] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:41:68: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(sqlite3_stmt *, int)'

Error: COMPILER_WARNING: [#def270] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:42:68: error[error]: incompatible types when initializing type 'double' using type 'const unsigned char * (*)(sqlite3_stmt *, int)'

Error: COMPILER_WARNING: [#def271] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:43:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *, int)'

Error: COMPILER_WARNING: [#def272] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:44:68: error[error]: incompatible types when initializing type 'double' using type 'void * (*)(sqlite3 *, int (*)(void *), void *)'

Error: COMPILER_WARNING: [#def273] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:45:85: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def274] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:46:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *, const char *, int,  void *, int (*)(void *, int,  const void *, int,  const void *))'

Error: COMPILER_WARNING: [#def275] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:47:68: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(sqlite3 *, const char *)'

Error: COMPILER_WARNING: [#def276] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:48:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *)'

Error: COMPILER_WARNING: [#def277] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:49:68: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(sqlite3 *)'

Error: COMPILER_WARNING: [#def278] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:50:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *, const char *, int (*)(void *, int,  char **, char **), void *, char **)'

Error: COMPILER_WARNING: [#def279] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:51:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *)'

Error: COMPILER_WARNING: [#def280] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:52:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *, const char *, int,  void *)'

Error: COMPILER_WARNING: [#def281] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:53:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *)'

Error: COMPILER_WARNING: [#def282] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:54:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *)'

Error: COMPILER_WARNING: [#def283] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:55:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def284] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:56:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3 *)'

Error: COMPILER_WARNING: [#def285] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:57:68: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(void)'

Error: COMPILER_WARNING: [#def286] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:58:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(void)'

Error: COMPILER_WARNING: [#def287] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:59:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *)'

Error: COMPILER_WARNING: [#def288] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:60:68: error[error]: incompatible types when initializing type 'double' using type 'void * (*)(sqlite3 *, void (*)(void *), void *)'

Error: COMPILER_WARNING: [#def289] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:61:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *, int (*)(void *, int,  const char *, const char *, const char *, const char *), void *)'

Error: COMPILER_WARNING: [#def290] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:62:68: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(void)'

Error: COMPILER_WARNING: [#def291] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:63:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def292] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:64:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3_stmt *)'

Error: COMPILER_WARNING: [#def293] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:65:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(sqlite3 *)'

Error: COMPILER_WARNING: [#def294] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:66:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(void)'

Error: COMPILER_WARNING: [#def295] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:67:68: error[error]: incompatible types when initializing type 'double' using type 'void * (*)(sqlite3 *, void (*)(void *, int,  const char *, const char *, sqlite3_int64), void *)' {{aka 'void * (*)(sqlite3 *, void (*)(void *, int,  const char *, const char *, long long int), void *)'}}

Error: COMPILER_WARNING: [#def296] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:68:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def297] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:69:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(sqlite3_context *, int,  sqlite3_value **)'

Error: COMPILER_WARNING: [#def298] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:70:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def299] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-num-const:71:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *, int,  char *, char *, sqlite3_int64)' {{aka 'void (*)(void *, int,  char *, char *, long long int)'}}

Error: COMPILER_WARNING: [#def300] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:1:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def301] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:1:73: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def302] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:2:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def303] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:2:75: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def304] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:2:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def305] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:3:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def306] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:3:72: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def307] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:4:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def308] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:4:72: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def309] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:5:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def310] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:5:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def311] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:6:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def312] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:6:78: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def313] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:6:84: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def314] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:7:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def315] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:7:76: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def316] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:7:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def317] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:8:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def318] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:8:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def319] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:9:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def320] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:10:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def321] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:11:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def322] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:12:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def323] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:13:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def324] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:14:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def325] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:15:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def326] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:16:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def327] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:17:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def328] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:18:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def329] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:19:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def330] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:20:76: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def331] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:21:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def332] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:22:73: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def333] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:23:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def334] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:24:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def335] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:25:77: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def336] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:26:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def337] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:27:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def338] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:28:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def339] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:29:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def340] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:30:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def341] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:31:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def342] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:32:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def343] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:33:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def344] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:34:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def345] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:35:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def346] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:36:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def347] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:37:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def348] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:38:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def349] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:39:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def350] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:40:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def351] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:41:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def352] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:42:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def353] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:43:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def354] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:44:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def355] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:45:85: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def356] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:46:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def357] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:47:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def358] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:48:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def359] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:49:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def360] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:50:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def361] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:51:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def362] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:52:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def363] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:53:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def364] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:54:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def365] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:55:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def366] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:56:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def367] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:57:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def368] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:58:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def369] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:59:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def370] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:60:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def371] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:61:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def372] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:62:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def373] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:63:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def374] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:64:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def375] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:65:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def376] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:66:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def377] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:67:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def378] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:68:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def379] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:69:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def380] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:70:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def381] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-str-lit:71:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def382] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:1:35: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def383] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:2:35: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def384] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:3:32: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def385] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:3:36: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def386] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:4:37: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def387] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:4:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def388] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:5:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def389] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:5:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def390] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:6:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def391] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:7:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def392] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:8:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def393] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:8:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def394] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:9:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def395] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:9:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def396] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:9:55: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def397] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:10:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def398] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:10:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def399] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:10:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def400] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:11:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def401] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:11:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def402] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:11:57: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def403] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:12:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def404] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:12:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def405] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:12:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def406] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:13:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def407] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:13:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def408] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:13:55: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def409] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:14:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def410] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:15:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def411] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:17:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def412] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:18:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def413] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:19:43: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def414] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:21:33: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def415] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:24:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def416] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:26:54: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def417] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:27:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def418] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:28:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def419] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:29:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def420] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:30:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def421] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:31:57: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def422] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:32:57: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def423] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:33:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def424] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:34:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def425] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:35:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def426] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:36:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def427] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:37:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def428] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:38:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def429] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:39:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def430] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:40:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def431] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:41:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def432] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:42:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def433] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:43:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def434] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:44:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def435] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:46:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def436] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:47:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def437] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:48:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def438] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:49:43: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def439] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:50:41: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def440] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:51:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def441] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:52:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def442] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:53:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def443] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:54:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def444] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:56:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def445] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:57:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def446] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:58:54: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def447] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:59:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def448] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:60:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def449] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:61:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def450] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:62:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def451] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:64:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def452] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:65:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def453] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:66:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def454] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:67:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def455] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:69:43: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def456] [important]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/not-type:71:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING (CWE-1164): [#def457]
skopeo-1.18.0/vendor/github.com/mattn/go-sqlite3/sqlite3.go:85:1: warning[-Wunused-function]: ‘_sqlite3_exec’ defined but not used
#   85 | _sqlite3_exec(sqlite3* db, const char* pcmd, long long* rowid, long long* changes)
#      | ^~~~~~~~~~~~~
#   83|   
#   84|   static int
#   85|-> _sqlite3_exec(sqlite3* db, const char* pcmd, long long* rowid, long long* changes)
#   86|   {
#   87|     int rv = sqlite3_exec(db, pcmd, 0, 0, 0);

Error: COMPILER_WARNING: [#def458] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/completed:1:16: error[error]: '__cgo__2' undeclared here (not in a function); did you mean '__cgo__1'?

Error: COMPILER_WARNING: [#def459] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:1:63: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def460] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:2:67: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def461] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:3:78: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def462] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:4:82: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def463] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:5:70: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def464] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:6:69: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def465] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:7:73: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def466] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:8:76: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def467] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:9:79: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def468] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:10:84: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def469] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:11:85: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def470] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:12:79: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def471] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:13:65: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def472] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:14:68: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def473] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:15:64: error[error]: invalid operands to binary * (have '_GoBytes_ (*)(void *, int)' and 'int')

Error: COMPILER_WARNING: [#def474] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:16:66: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def475] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:17:60: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def476] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:18:62: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def477] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:19:66: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def478] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:20:77: error[error]: invalid operands to binary * (have 'void (*)(CK_ECDH1_DERIVE_PARAMS *, void *, CK_ULONG)' {{aka 'void (*)(CK_ECDH1_DERIVE_PARAMS *, void *, long unsigned int)'}} and 'int')

Error: COMPILER_WARNING: [#def479] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:21:77: error[error]: invalid operands to binary * (have 'void (*)(CK_ECDH1_DERIVE_PARAMS *, void *, CK_ULONG)' {{aka 'void (*)(CK_ECDH1_DERIVE_PARAMS *, void *, long unsigned int)'}} and 'int')

Error: COMPILER_WARNING: [#def480] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-int-const:22:70: error[error]: invalid operands to binary * (have 'void (*)(CK_RSA_PKCS_OAEP_PARAMS *, void *, CK_ULONG)' {{aka 'void (*)(CK_RSA_PKCS_OAEP_PARAMS *, void *, long unsigned int)'}} and 'int')

Error: COMPILER_WARNING: [#def481] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:1:76: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def482] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:2:80: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def483] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:3:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def484] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:4:95: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def485] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:5:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def486] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:6:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def487] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:7:86: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def488] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:8:89: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def489] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:9:92: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def490] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:10:97: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def491] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:11:98: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def492] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:12:92: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def493] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:13:78: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def494] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:14:81: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def495] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:15:68: error[error]: incompatible types when initializing type 'double' using type '_GoBytes_ (*)(void *, int)'

Error: COMPILER_WARNING: [#def496] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:16:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def497] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:17:73: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def498] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:18:75: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def499] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:19:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def500] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:20:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(CK_ECDH1_DERIVE_PARAMS *, void *, CK_ULONG)' {{aka 'void (*)(CK_ECDH1_DERIVE_PARAMS *, void *, long unsigned int)'}}

Error: COMPILER_WARNING: [#def501] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:21:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(CK_ECDH1_DERIVE_PARAMS *, void *, CK_ULONG)' {{aka 'void (*)(CK_ECDH1_DERIVE_PARAMS *, void *, long unsigned int)'}}

Error: COMPILER_WARNING: [#def502] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-num-const:22:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(CK_RSA_PKCS_OAEP_PARAMS *, void *, CK_ULONG)' {{aka 'void (*)(CK_RSA_PKCS_OAEP_PARAMS *, void *, long unsigned int)'}}

Error: COMPILER_WARNING: [#def503] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:1:76: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def504] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:2:80: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def505] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:3:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def506] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:4:95: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def507] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:5:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def508] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:6:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def509] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:7:86: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def510] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:8:89: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def511] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:9:92: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def512] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:10:97: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def513] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:11:98: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def514] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:12:92: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def515] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:13:78: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def516] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:14:81: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def517] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:15:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def518] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:16:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def519] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:17:73: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def520] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:18:75: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def521] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:19:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def522] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:20:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def523] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:21:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def524] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-str-lit:22:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def525] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-type:15:36: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def526] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-type:20:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def527] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-type:21:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def528] [important]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/not-type:22:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: CPPCHECK_WARNING (CWE-476): [#def529]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:77: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: c
#   75|   	CK_C_GetFunctionList list;
#   76|   	struct ctx *c = calloc(1, sizeof(struct ctx));
#   77|-> 	c->handle = dlopen(module, RTLD_LAZY);
#   78|   	if (c->handle == NULL) {
#   79|   		free(c);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def530]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:77:9: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL 'c'
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:76:25: acquire_memory: this call could return NULL
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:77:9: danger: 'c' could be NULL: unchecked value from [(1)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/0)
#   75|   	CK_C_GetFunctionList list;
#   76|   	struct ctx *c = calloc(1, sizeof(struct ctx));
#   77|-> 	c->handle = dlopen(module, RTLD_LAZY);
#   78|   	if (c->handle == NULL) {
#   79|   		free(c);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def531]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:77:9: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘c’
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:76:25: acquire_memory: this call could return NULL
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:77:9: danger: ‘c’ could be NULL: unchecked value from [(1)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/0)
#   75|   	CK_C_GetFunctionList list;
#   76|   	struct ctx *c = calloc(1, sizeof(struct ctx));
#   77|-> 	c->handle = dlopen(module, RTLD_LAZY);
#   78|   	if (c->handle == NULL) {
#   79|   		free(c);

Error: CPPCHECK_WARNING (CWE-476): [#def532]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:78: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: c
#   76|   	struct ctx *c = calloc(1, sizeof(struct ctx));
#   77|   	c->handle = dlopen(module, RTLD_LAZY);
#   78|-> 	if (c->handle == NULL) {
#   79|   		free(c);
#   80|   		return NULL;

Error: CPPCHECK_WARNING (CWE-476): [#def533]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:82: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: c
#   80|   		return NULL;
#   81|   	}
#   82|-> 	list = (CK_C_GetFunctionList) dlsym(c->handle, "C_GetFunctionList");
#   83|   	if (list == NULL) {
#   84|   		free(c);

Error: GCC_ANALYZER_WARNING (CWE-401): [#def534]
skopeo-1.18.0/vendor/github.com/miekg/pkcs11/pkcs11.go:316:17: warning[-Wanalyzer-malloc-leak]: leak of ‘*((CK_ATTRIBUTE *)temp).pValue’
/tmp/go-build1335725535/b432/cgo-gcc-prolog:684:1: enter_function: entry to ‘_cgo_c4fd6099d396_Cfunc_GetAttributeValue’
/tmp/go-build1335725535/b432/cgo-gcc-prolog:697:11: call_function: calling ‘GetAttributeValue’ from ‘_cgo_c4fd6099d396_Cfunc_GetAttributeValue’
#  314|   			continue;
#  315|   		}
#  316|-> 		temp[i].pValue = calloc(temp[i].ulValueLen, sizeof(CK_BYTE));
#  317|   	}
#  318|   	return c->sym->C_GetAttributeValue(session, object, temp, templen);

Error: COMPILER_WARNING: [#def535] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/completed:1:16: error[error]: '__cgo__2' undeclared here (not in a function); did you mean '__cgo__1'?

Error: COMPILER_WARNING: [#def536] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:1:63: error[error]: invalid operands to binary * (have 'char * (*)(_GoString_)' and 'int')

Error: COMPILER_WARNING: [#def537] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:43:64: error[error]: invalid operands to binary * (have '_GoBytes_ (*)(void *, int)' and 'int')

Error: COMPILER_WARNING: [#def538] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:44:65: error[error]: invalid operands to binary * (have '_GoString_ (*)(char *)' and 'int')

Error: COMPILER_WARNING: [#def539] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:45:63: error[error]: invalid operands to binary * (have 'void * (*)(size_t,  size_t)' {{aka 'void * (*)(long unsigned int,  long unsigned int)'}} and 'int')

Error: COMPILER_WARNING: [#def540] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:45:66: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def541] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:46:61: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def542] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:46:67: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def543] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:47:61: error[error]: invalid operands to binary * (have 'void (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def544] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:47:63: error[error]: invalid operands to binary * (have 'void * (*)(size_t,  size_t)' {{aka 'void * (*)(long unsigned int,  long unsigned int)'}} and 'int')

Error: COMPILER_WARNING: [#def545] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:48:61: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def546] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:48:87: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, char *, void *, void *, void *, gpgme_error_t *)' {{aka 'unsigned int (*)(struct gpgme_context *, char *, void *, void *, void *, unsigned int *)'}} and 'int')

Error: COMPILER_WARNING: [#def547] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:49:61: error[error]: invalid operands to binary * (have 'void (*)(void *)' and 'int')

Error: COMPILER_WARNING: [#def548] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:49:73: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(void *, char *, char *, int,  int)' {{aka 'unsigned int (*)(void *, char *, char *, int,  int)'}} and 'int')

Error: COMPILER_WARNING: [#def549] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:50:76: error[error]: invalid operands to binary * (have 'const char * (*)(const char *)' and 'int')

Error: COMPILER_WARNING: [#def550] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:50:87: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, char *, void *, void *, void *, gpgme_error_t *)' {{aka 'unsigned int (*)(struct gpgme_context *, char *, void *, void *, void *, unsigned int *)'}} and 'int')

Error: COMPILER_WARNING: [#def551] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:51:73: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(void *, char *, char *, int,  int)' {{aka 'unsigned int (*)(void *, char *, char *, int,  int)'}} and 'int')

Error: COMPILER_WARNING: [#def552] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:51:82: error[error]: invalid operands to binary * (have 'struct _gpgme_engine_info * (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def553] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:52:71: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def554] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:52:82: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, gpgme_protocol_t,  const char *, const char *)' {{aka 'unsigned int (*)(struct gpgme_context *, gpgme_protocol_t,  const char *, const char *)'}} and 'int')

Error: COMPILER_WARNING: [#def555] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:53:68: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def556] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:54:69: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def557] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:54:76: error[error]: invalid operands to binary * (have 'const char * (*)(const char *)' and 'int')

Error: COMPILER_WARNING: [#def558] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:55:78: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def559] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:55:82: error[error]: invalid operands to binary * (have 'struct _gpgme_engine_info * (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def560] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:56:82: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, gpgme_protocol_t,  const char *, const char *)' {{aka 'unsigned int (*)(struct gpgme_context *, gpgme_protocol_t,  const char *, const char *)'}} and 'int')

Error: COMPILER_WARNING: [#def561] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:56:83: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(gpgme_protocol_t)' {{aka 'unsigned int (*)(gpgme_protocol_t)'}} and 'int')

Error: COMPILER_WARNING: [#def562] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:57:68: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def563] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:57:76: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def564] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:58:69: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def565] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:58:71: error[error]: invalid operands to binary * (have 'gpgme_err_code_t (*)(gpgme_error_t)' {{aka 'gpg_err_code_t (*)(unsigned int)'}} and 'int')

Error: COMPILER_WARNING: [#def566] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:59:68: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(gpgme_err_code_t)' {{aka 'unsigned int (*)(gpg_err_code_t)'}} and 'int')

Error: COMPILER_WARNING: [#def567] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:59:78: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def568] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:60:70: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def569] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:60:83: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(gpgme_protocol_t)' {{aka 'unsigned int (*)(gpgme_protocol_t)'}} and 'int')

Error: COMPILER_WARNING: [#def570] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:61:76: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def571] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:62:71: error[error]: invalid operands to binary * (have 'gpgme_err_code_t (*)(gpgme_error_t)' {{aka 'gpg_err_code_t (*)(unsigned int)'}} and 'int')

Error: COMPILER_WARNING: [#def572] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:62:72: error[error]: invalid operands to binary * (have 'int (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def573] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:63:74: error[error]: invalid operands to binary * (have 'const char * (*)(const char *)' and 'int')

Error: COMPILER_WARNING: [#def574] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:64:78: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct _gpgme_engine_info **)' {{aka 'unsigned int (*)(struct _gpgme_engine_info **)'}} and 'int')

Error: COMPILER_WARNING: [#def575] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:65:70: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, const char *, struct _gpgme_key **, int)' {{aka 'unsigned int (*)(struct gpgme_context *, const char *, struct _gpgme_key **, int)'}} and 'int')

Error: COMPILER_WARNING: [#def576] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:66:79: error[error]: invalid operands to binary * (have 'gpgme_keylist_mode_t (*)(struct gpgme_context *)' {{aka 'unsigned int (*)(struct gpgme_context *)'}} and 'int')

Error: COMPILER_WARNING: [#def577] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:67:80: error[error]: invalid operands to binary * (have 'gpgme_pinentry_mode_t (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def578] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:68:75: error[error]: invalid operands to binary * (have 'gpgme_protocol_t (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def579] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:69:75: error[error]: invalid operands to binary * (have 'int (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def580] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:70:74: error[error]: invalid operands to binary * (have 'void (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def581] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:71:68: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def582] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:72:77: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def583] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:73:66: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context **)' {{aka 'unsigned int (*)(struct gpgme_context **)'}} and 'int')

Error: COMPILER_WARNING: [#def584] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:74:73: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *)'}} and 'int')

Error: COMPILER_WARNING: [#def585] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:75:80: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *)'}} and 'int')

Error: COMPILER_WARNING: [#def586] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:76:73: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, struct _gpgme_key **, gpgme_encrypt_flags_t,  struct gpgme_data *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct _gpgme_key **, gpgme_encrypt_flags_t,  struct gpgme_data *, struct gpgme_data *)'}} and 'int')

Error: COMPILER_WARNING: [#def587] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:77:72: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, const char *, gpgme_export_mode_t,  struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, const char *, unsigned int,  struct gpgme_data *)'}} and 'int')

Error: COMPILER_WARNING: [#def588] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:78:72: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *)'}} and 'int')

Error: COMPILER_WARNING: [#def589] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:79:79: error[error]: invalid operands to binary * (have 'struct _gpgme_op_import_result * (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def590] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:80:77: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *)' {{aka 'unsigned int (*)(struct gpgme_context *)'}} and 'int')

Error: COMPILER_WARNING: [#def591] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:81:78: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, struct _gpgme_key **)' {{aka 'unsigned int (*)(struct gpgme_context *, struct _gpgme_key **)'}} and 'int')

Error: COMPILER_WARNING: [#def592] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:82:79: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, const char *, int)' {{aka 'unsigned int (*)(struct gpgme_context *, const char *, int)'}} and 'int')

Error: COMPILER_WARNING: [#def593] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:83:70: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *, gpgme_sig_mode_t)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *, gpgme_sig_mode_t)'}} and 'int')

Error: COMPILER_WARNING: [#def594] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:84:72: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *, struct gpgme_data *)'}} and 'int')

Error: COMPILER_WARNING: [#def595] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:85:79: error[error]: invalid operands to binary * (have 'struct _gpgme_op_verify_result * (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def596] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:86:78: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def597] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:87:78: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def598] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:88:73: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def599] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:89:70: error[error]: invalid operands to binary * (have 'void (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def600] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:90:72: error[error]: invalid operands to binary * (have 'void (*)(struct gpgme_context *, int)' and 'int')

Error: COMPILER_WARNING: [#def601] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:91:78: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(gpgme_protocol_t,  const char *, const char *)' {{aka 'unsigned int (*)(gpgme_protocol_t,  const char *, const char *)'}} and 'int')

Error: COMPILER_WARNING: [#def602] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:92:79: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, gpgme_keylist_mode_t)' {{aka 'unsigned int (*)(struct gpgme_context *, unsigned int)'}} and 'int')

Error: COMPILER_WARNING: [#def603] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:93:80: error[error]: invalid operands to binary * (have 'void (*)(struct gpgme_context *, gpgme_error_t (*)(void *, const char *, const char *, int,  int), void *)' {{aka 'void (*)(struct gpgme_context *, unsigned int (*)(void *, const char *, const char *, int,  int), void *)'}} and 'int')

Error: COMPILER_WARNING: [#def604] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:94:80: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, gpgme_pinentry_mode_t)' {{aka 'unsigned int (*)(struct gpgme_context *, gpgme_pinentry_mode_t)'}} and 'int')

Error: COMPILER_WARNING: [#def605] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:95:75: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, gpgme_protocol_t)' {{aka 'unsigned int (*)(struct gpgme_context *, gpgme_protocol_t)'}} and 'int')

Error: COMPILER_WARNING: [#def606] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:96:75: error[error]: invalid operands to binary * (have 'void (*)(struct gpgme_context *, int)' and 'int')

Error: COMPILER_WARNING: [#def607] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:97:73: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def608] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:98:74: error[error]: invalid operands to binary * (have 'gpgme_error_t (*)(struct gpgme_context *, struct _gpgme_key * const)' {{aka 'unsigned int (*)(struct gpgme_context *, struct _gpgme_key * const)'}} and 'int')

Error: COMPILER_WARNING: [#def609] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:99:76: error[error]: invalid operands to binary * (have 'void (*)(struct gpgme_context *)' and 'int')

Error: COMPILER_WARNING: [#def610] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:100:72: error[error]: invalid operands to binary * (have 'const char * (*)(gpgme_error_t)' {{aka 'const char * (*)(unsigned int)'}} and 'int')

Error: COMPILER_WARNING: [#def611] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:101:72: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def612] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:102:73: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def613] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:103:61: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def614] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:104:78: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def615] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:105:73: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def616] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:106:73: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def617] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:107:70: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def618] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:108:70: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def619] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:109:69: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def620] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:110:69: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def621] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:111:74: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def622] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:112:69: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def623] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:113:68: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_key *)' and 'int')

Error: COMPILER_WARNING: [#def624] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:114:79: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_signature *)' and 'int')

Error: COMPILER_WARNING: [#def625] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:115:77: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_signature *)' and 'int')

Error: COMPILER_WARNING: [#def626] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:116:83: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_signature *)' and 'int')

Error: COMPILER_WARNING: [#def627] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:117:64: error[error]: invalid type argument of unary '*' (have 'int')

Error: COMPILER_WARNING: [#def628] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:118:73: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_subkey *)' and 'int')

Error: COMPILER_WARNING: [#def629] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:119:72: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_subkey *)' and 'int')

Error: COMPILER_WARNING: [#def630] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:120:72: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_subkey *)' and 'int')

Error: COMPILER_WARNING: [#def631] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:121:72: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_subkey *)' and 'int')

Error: COMPILER_WARNING: [#def632] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:122:71: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_subkey *)' and 'int')

Error: COMPILER_WARNING: [#def633] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:123:69: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_user_id *)' and 'int')

Error: COMPILER_WARNING: [#def634] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-int-const:124:69: error[error]: invalid operands to binary * (have 'unsigned int (*)(struct _gpgme_user_id *)' and 'int')

Error: COMPILER_WARNING: [#def635] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:1:67: error[error]: incompatible types when initializing type 'double' using type 'char * (*)(_GoString_)'

Error: COMPILER_WARNING: [#def636] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:43:68: error[error]: incompatible types when initializing type 'double' using type '_GoBytes_ (*)(void *, int)'

Error: COMPILER_WARNING: [#def637] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:44:68: error[error]: incompatible types when initializing type 'double' using type '_GoString_ (*)(char *)'

Error: COMPILER_WARNING: [#def638] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:45:68: error[error]: incompatible types when initializing type 'double' using type 'void * (*)(size_t,  size_t)' {{aka 'void * (*)(long unsigned int,  long unsigned int)'}}

Error: COMPILER_WARNING: [#def639] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:45:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def640] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:46:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def641] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:46:80: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def642] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:47:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *)'

Error: COMPILER_WARNING: [#def643] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:47:68: error[error]: incompatible types when initializing type 'double' using type 'void * (*)(size_t,  size_t)' {{aka 'void * (*)(long unsigned int,  long unsigned int)'}}

Error: COMPILER_WARNING: [#def644] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:48:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, char *, void *, void *, void *, gpgme_error_t *)' {{aka 'unsigned int (*)(struct gpgme_context *, char *, void *, void *, void *, unsigned int *)'}}

Error: COMPILER_WARNING: [#def645] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:48:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def646] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:49:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(void *, char *, char *, int,  int)' {{aka 'unsigned int (*)(void *, char *, char *, int,  int)'}}

Error: COMPILER_WARNING: [#def647] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:49:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(void *)'

Error: COMPILER_WARNING: [#def648] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:50:68: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(const char *)'

Error: COMPILER_WARNING: [#def649] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:50:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, char *, void *, void *, void *, gpgme_error_t *)' {{aka 'unsigned int (*)(struct gpgme_context *, char *, void *, void *, void *, unsigned int *)'}}

Error: COMPILER_WARNING: [#def650] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:51:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(void *, char *, char *, int,  int)' {{aka 'unsigned int (*)(void *, char *, char *, int,  int)'}}

Error: COMPILER_WARNING: [#def651] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:51:68: error[error]: incompatible types when initializing type 'double' using type 'struct _gpgme_engine_info * (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def652] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:52:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, gpgme_protocol_t,  const char *, const char *)' {{aka 'unsigned int (*)(struct gpgme_context *, gpgme_protocol_t,  const char *, const char *)'}}

Error: COMPILER_WARNING: [#def653] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:52:84: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def654] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:53:81: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def655] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:54:68: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(const char *)'

Error: COMPILER_WARNING: [#def656] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:54:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def657] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:55:68: error[error]: incompatible types when initializing type 'double' using type 'struct _gpgme_engine_info * (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def658] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:55:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def659] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:56:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(gpgme_protocol_t)' {{aka 'unsigned int (*)(gpgme_protocol_t)'}}

Error: COMPILER_WARNING: [#def660] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:56:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, gpgme_protocol_t,  const char *, const char *)' {{aka 'unsigned int (*)(struct gpgme_context *, gpgme_protocol_t,  const char *, const char *)'}}

Error: COMPILER_WARNING: [#def661] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:57:81: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def662] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:57:89: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def663] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:58:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_err_code_t (*)(gpgme_error_t)' {{aka 'gpg_err_code_t (*)(unsigned int)'}}

Error: COMPILER_WARNING: [#def664] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:58:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def665] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:59:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(gpgme_err_code_t)' {{aka 'unsigned int (*)(gpg_err_code_t)'}}

Error: COMPILER_WARNING: [#def666] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:59:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def667] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:60:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(gpgme_protocol_t)' {{aka 'unsigned int (*)(gpgme_protocol_t)'}}

Error: COMPILER_WARNING: [#def668] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:60:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def669] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:61:89: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def670] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:62:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def671] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:63:68: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(const char *)'

Error: COMPILER_WARNING: [#def672] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:64:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct _gpgme_engine_info **)' {{aka 'unsigned int (*)(struct _gpgme_engine_info **)'}}

Error: COMPILER_WARNING: [#def673] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:65:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, const char *, struct _gpgme_key **, int)' {{aka 'unsigned int (*)(struct gpgme_context *, const char *, struct _gpgme_key **, int)'}}

Error: COMPILER_WARNING: [#def674] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:66:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_keylist_mode_t (*)(struct gpgme_context *)' {{aka 'unsigned int (*)(struct gpgme_context *)'}}

Error: COMPILER_WARNING: [#def675] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:67:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_pinentry_mode_t (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def676] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:68:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_protocol_t (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def677] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:69:68: error[error]: incompatible types when initializing type 'double' using type 'int (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def678] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:70:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def679] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:71:81: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def680] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:72:90: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def681] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:73:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context **)' {{aka 'unsigned int (*)(struct gpgme_context **)'}}

Error: COMPILER_WARNING: [#def682] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:74:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *)'}}

Error: COMPILER_WARNING: [#def683] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:75:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *)'}}

Error: COMPILER_WARNING: [#def684] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:76:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, struct _gpgme_key **, gpgme_encrypt_flags_t,  struct gpgme_data *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct _gpgme_key **, gpgme_encrypt_flags_t,  struct gpgme_data *, struct gpgme_data *)'}}

Error: COMPILER_WARNING: [#def685] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:77:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, const char *, gpgme_export_mode_t,  struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, const char *, unsigned int,  struct gpgme_data *)'}}

Error: COMPILER_WARNING: [#def686] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:78:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *)'}}

Error: COMPILER_WARNING: [#def687] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:79:68: error[error]: incompatible types when initializing type 'double' using type 'struct _gpgme_op_import_result * (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def688] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:80:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *)' {{aka 'unsigned int (*)(struct gpgme_context *)'}}

Error: COMPILER_WARNING: [#def689] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:81:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, struct _gpgme_key **)' {{aka 'unsigned int (*)(struct gpgme_context *, struct _gpgme_key **)'}}

Error: COMPILER_WARNING: [#def690] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:82:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, const char *, int)' {{aka 'unsigned int (*)(struct gpgme_context *, const char *, int)'}}

Error: COMPILER_WARNING: [#def691] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:83:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *, gpgme_sig_mode_t)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *, gpgme_sig_mode_t)'}}

Error: COMPILER_WARNING: [#def692] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:84:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *, struct gpgme_data *)' {{aka 'unsigned int (*)(struct gpgme_context *, struct gpgme_data *, struct gpgme_data *, struct gpgme_data *)'}}

Error: COMPILER_WARNING: [#def693] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:85:68: error[error]: incompatible types when initializing type 'double' using type 'struct _gpgme_op_verify_result * (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def694] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:86:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def695] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:87:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def696] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:88:86: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def697] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:89:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def698] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:90:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(struct gpgme_context *, int)'

Error: COMPILER_WARNING: [#def699] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:91:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(gpgme_protocol_t,  const char *, const char *)' {{aka 'unsigned int (*)(gpgme_protocol_t,  const char *, const char *)'}}

Error: COMPILER_WARNING: [#def700] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:92:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, gpgme_keylist_mode_t)' {{aka 'unsigned int (*)(struct gpgme_context *, unsigned int)'}}

Error: COMPILER_WARNING: [#def701] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:93:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(struct gpgme_context *, gpgme_error_t (*)(void *, const char *, const char *, int,  int), void *)' {{aka 'void (*)(struct gpgme_context *, unsigned int (*)(void *, const char *, const char *, int,  int), void *)'}}

Error: COMPILER_WARNING: [#def702] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:94:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, gpgme_pinentry_mode_t)' {{aka 'unsigned int (*)(struct gpgme_context *, gpgme_pinentry_mode_t)'}}

Error: COMPILER_WARNING: [#def703] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:95:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, gpgme_protocol_t)' {{aka 'unsigned int (*)(struct gpgme_context *, gpgme_protocol_t)'}}

Error: COMPILER_WARNING: [#def704] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:96:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(struct gpgme_context *, int)'

Error: COMPILER_WARNING: [#def705] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:97:86: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def706] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:98:68: error[error]: incompatible types when initializing type 'double' using type 'gpgme_error_t (*)(struct gpgme_context *, struct _gpgme_key * const)' {{aka 'unsigned int (*)(struct gpgme_context *, struct _gpgme_key * const)'}}

Error: COMPILER_WARNING: [#def707] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:99:68: error[error]: incompatible types when initializing type 'double' using type 'void (*)(struct gpgme_context *)'

Error: COMPILER_WARNING: [#def708] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:100:69: error[error]: incompatible types when initializing type 'double' using type 'const char * (*)(gpgme_error_t)' {{aka 'const char * (*)(unsigned int)'}}

Error: COMPILER_WARNING: [#def709] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:101:85: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def710] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:102:86: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def711] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:103:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def712] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:104:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def713] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:105:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def714] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:106:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def715] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:107:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def716] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:108:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def717] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:109:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def718] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:110:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def719] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:111:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def720] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:112:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def721] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:113:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_key *)'

Error: COMPILER_WARNING: [#def722] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:114:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_signature *)'

Error: COMPILER_WARNING: [#def723] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:115:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_signature *)'

Error: COMPILER_WARNING: [#def724] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:116:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_signature *)'

Error: COMPILER_WARNING: [#def725] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:117:77: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def726] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:118:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_subkey *)'

Error: COMPILER_WARNING: [#def727] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:119:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_subkey *)'

Error: COMPILER_WARNING: [#def728] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:120:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_subkey *)'

Error: COMPILER_WARNING: [#def729] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:121:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_subkey *)'

Error: COMPILER_WARNING: [#def730] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:122:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_subkey *)'

Error: COMPILER_WARNING: [#def731] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:123:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_user_id *)'

Error: COMPILER_WARNING: [#def732] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-num-const:124:69: error[error]: incompatible types when initializing type 'double' using type 'unsigned int (*)(struct _gpgme_user_id *)'

Error: COMPILER_WARNING: [#def733] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:1:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def734] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:2:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def735] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:3:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def736] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:4:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def737] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:5:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def738] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:6:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def739] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:7:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def740] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:8:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def741] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:9:67: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def742] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:10:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def743] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:11:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def744] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:12:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def745] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:13:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def746] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:14:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def747] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:15:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def748] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:16:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def749] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:17:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def750] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:18:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def751] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:19:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def752] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:20:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def753] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:21:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def754] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:22:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def755] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:23:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def756] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:24:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def757] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:25:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def758] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:26:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def759] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:27:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def760] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:28:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def761] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:29:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def762] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:30:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def763] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:31:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def764] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:32:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def765] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:33:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def766] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:34:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def767] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:35:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def768] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:36:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def769] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:37:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def770] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:38:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def771] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:39:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def772] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:40:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def773] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:41:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def774] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:42:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def775] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:43:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def776] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:44:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def777] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:45:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def778] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:45:79: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def779] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:46:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def780] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:46:80: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def781] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:47:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def782] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:48:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def783] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:48:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def784] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:49:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def785] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:50:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def786] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:51:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def787] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:52:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def788] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:52:84: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def789] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:53:81: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def790] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:54:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def791] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:54:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def792] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:55:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def793] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:55:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def794] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:56:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def795] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:57:81: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def796] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:57:89: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def797] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:58:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def798] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:58:82: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def799] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:59:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def800] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:59:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def801] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:60:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def802] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:60:83: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def803] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:61:89: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def804] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:62:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def805] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:63:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def806] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:64:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def807] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:65:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def808] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:66:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def809] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:67:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def810] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:68:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def811] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:69:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def812] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:70:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def813] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:71:81: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def814] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:72:90: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def815] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:73:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def816] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:74:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def817] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:75:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def818] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:76:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def819] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:77:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def820] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:78:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def821] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:79:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def822] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:80:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def823] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:81:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def824] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:82:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def825] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:83:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def826] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:84:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def827] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:85:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def828] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:86:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def829] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:87:91: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def830] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:88:86: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def831] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:89:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def832] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:90:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def833] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:91:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def834] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:92:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def835] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:93:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def836] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:94:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def837] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:95:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def838] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:96:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def839] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:97:86: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def840] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:98:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def841] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:99:68: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def842] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:100:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def843] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:101:85: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def844] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:102:86: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def845] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:103:74: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def846] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:104:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def847] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:105:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def848] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:106:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def849] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:107:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def850] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:108:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def851] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:109:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def852] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:110:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def853] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:111:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def854] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:112:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def855] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:113:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def856] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:114:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def857] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:115:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def858] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:116:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def859] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:117:77: error[error]: expected expression before ';' token

Error: COMPILER_WARNING: [#def860] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:118:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def861] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:119:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def862] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:120:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def863] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:121:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def864] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:122:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def865] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:123:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def866] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-str-lit:124:69: error[error]: invalid initializer

Error: COMPILER_WARNING: [#def867] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:1:35: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def868] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:2:54: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def869] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:3:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def870] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:4:55: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def871] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:5:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def872] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:6:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def873] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:7:54: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def874] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:8:55: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def875] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:9:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def876] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:10:57: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def877] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:11:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def878] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:12:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def879] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:13:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def880] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:14:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def881] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:15:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def882] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:16:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def883] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:17:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def884] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:18:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def885] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:19:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def886] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:20:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def887] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:21:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def888] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:22:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def889] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:23:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def890] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:24:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def891] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:25:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def892] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:26:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def893] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:27:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def894] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:28:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def895] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:29:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def896] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:30:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def897] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:31:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def898] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:32:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def899] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:33:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def900] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:34:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def901] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:35:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def902] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:36:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def903] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:37:53: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def904] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:38:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def905] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:39:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def906] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:40:40: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def907] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:41:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def908] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:42:43: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def909] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:43:36: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def910] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:44:37: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def911] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:45:35: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def912] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:47:33: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def913] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:47:35: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def914] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:48:59: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def915] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:49:33: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def916] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:49:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def917] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:50:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def918] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:50:59: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def919] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:51:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def920] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:51:54: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def921] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:52:54: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def922] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:54:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def923] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:55:54: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def924] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:56:54: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def925] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:56:55: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def926] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:58:43: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def927] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:59:40: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def928] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:60:55: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def929] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:62:43: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def930] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:62:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def931] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:63:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def932] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:64:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def933] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:65:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def934] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:66:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def935] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:67:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def936] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:68:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def937] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:69:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def938] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:70:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def939] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:73:38: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def940] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:74:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def941] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:75:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def942] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:76:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def943] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:77:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def944] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:78:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def945] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:79:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def946] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:80:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def947] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:81:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def948] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:82:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def949] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:83:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def950] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:84:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def951] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:85:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def952] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:89:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def953] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:90:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def954] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:91:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def955] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:92:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def956] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:93:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def957] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:94:52: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def958] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:95:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def959] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:96:47: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def960] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:98:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def961] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:99:48: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def962] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:100:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def963] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:104:50: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def964] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:105:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def965] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:106:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def966] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:107:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def967] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:108:42: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def968] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:109:41: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def969] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:110:41: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def970] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:111:46: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def971] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:112:41: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def972] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:113:40: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def973] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:114:51: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def974] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:115:49: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def975] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:116:55: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def976] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:118:45: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def977] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:119:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def978] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:120:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def979] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:121:44: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def980] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:122:43: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def981] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:123:41: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Error: COMPILER_WARNING: [#def982] [important]
skopeo-1.18.0/vendor/github.com/proglottis/gpgme/not-type:124:41: error[error]: '__cgo_undefined__2' undeclared (first use in this function)

Scan Properties

analyzer-version-clippy1.86.0
analyzer-version-cppcheck2.17.1
analyzer-version-gcc15.0.1
analyzer-version-gcc-analyzer15.0.1
analyzer-version-shellcheck0.10.0
analyzer-version-unicontrol0.0.2
enabled-pluginsclippy, cppcheck, gcc, shellcheck, unicontrol
exit-code0
hostip-172-16-1-197.us-west-2.compute.internal
known-false-positives/usr/share/csmock/known-false-positives.js
known-false-positives-rpmknown-false-positives-0.0.0.20250425.124705.g1c7c448.main-1.el9.noarch
mock-configfedora-rawhide-x86_64
project-nameskopeo-1.18.0-1.fc43
store-results-to/tmp/tmpojc68tsw/skopeo-1.18.0-1.fc43.tar.xz
time-created2025-04-25 15:39:27
time-finished2025-04-25 15:42:59
toolcsmock
tool-args'/usr/bin/csmock' '-r' 'fedora-rawhide-x86_64' '-t' 'unicontrol,cppcheck,gcc,clippy,shellcheck' '-o' '/tmp/tmpojc68tsw/skopeo-1.18.0-1.fc43.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '--gcc-analyzer-bin=/usr/bin/gcc' '/tmp/tmpojc68tsw/skopeo-1.18.0-1.fc43.src.rpm'
tool-versioncsmock-3.8.1.20250422.172604.g26bc3d6-1.el9