mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
crypto: af_alg - fix af_alg memory_allocated data type
Change data type to fix warning: crypto/af_alg.c:35: warning: initialization from incompatible pointer type Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
3c097b8008
commit
0686952458
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ struct alg_type_list {
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
};
|
};
|
||||||
|
|
||||||
static atomic_t alg_memory_allocated;
|
static atomic_long_t alg_memory_allocated;
|
||||||
|
|
||||||
static struct proto alg_proto = {
|
static struct proto alg_proto = {
|
||||||
.name = "ALG",
|
.name = "ALG",
|
||||||
|
|
Loading…
Reference in a new issue