Browse Source

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>
Randy Dunlap 15 năm trước cách đây
mục cha
commit
0686952458
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      crypto/af_alg.c

+ 1 - 1
crypto/af_alg.c

@@ -27,7 +27,7 @@ struct alg_type_list {
 	struct list_head list;
 };
 
-static atomic_t alg_memory_allocated;
+static atomic_long_t alg_memory_allocated;
 
 static struct proto alg_proto = {
 	.name			= "ALG",