From 06d93828aff7ac48dc5431e7bc141af21d49a6be Mon Sep 17 00:00:00 2001 From: "chao.an" Date: Mon, 9 Nov 2020 12:09:34 +0800 Subject: [PATCH] sys/resource: fix nxstyle warning Signed-off-by: chao.an --- include/sys/resource.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sys/resource.h b/include/sys/resource.h index 337a1ca7f3..0045d5adb6 100644 --- a/include/sys/resource.h +++ b/include/sys/resource.h @@ -63,7 +63,7 @@ #define RUSAGE_CHILDREN 1 /* Returns information about children of * the current process */ -/* Possible values for the resource argument of getrlimit() and setrlimit(): */ +/* Possible values for the resource argument of getrlimit() and setrlimit() */ #define RLIMIT_CORE 1 /* Limit on size of core dump file */ #define RLIMIT_CPU 2 /* Limit on CPU time per process. */ @@ -89,8 +89,8 @@ * Type Definitions ****************************************************************************/ -/* All resource limits are represented with this type. It must be an unsigned - * integral type. +/* All resource limits are represented with this type. + * It must be an unsigned integral type. */ typedef uint32_t rlim_t;