From 1231b1615180df2d02081b9ec21e9ebb00a676af Mon Sep 17 00:00:00 2001 From: damage Date: Sun, 25 Aug 2024 20:57:58 +0200 Subject: [PATCH] removed warning of implicit int --- shperm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shperm.c b/shperm.c index b28db96..31e15f7 100644 --- a/shperm.c +++ b/shperm.c @@ -16,7 +16,7 @@ #define PERMISSION_OTHERS 0 #define PERMISSION_BYTES 3 // rwx #define PERMISSION_ENTITIES 3 // user group others -const MAX_PERMISSIONS = PERMISSION_ENTITIES * PERMISSION_BYTES; +const int MAX_PERMISSIONS = PERMISSION_ENTITIES * PERMISSION_BYTES; typedef struct { char* username;