[PATCH] Audit: Fix the format type for size_t variables

2008-02-27 Thread Paul Moore
Fix the following compiler warning by using %zu as defined in C99. CC kernel/auditsc.o kernel/auditsc.c: In function 'audit_log_single_execve_arg': kernel/auditsc.c:1074: warning: format '%ld' expects type 'long int', but argument 4 has type 'size_t' Signed-off-by: Paul Moore [EMAIL

Re: [PATCH] Audit: Fix the format type for size_t variables

2008-02-27 Thread Eric Paris
On Wed, 2008-02-27 at 10:39 -0500, Paul Moore wrote: Fix the following compiler warning by using %zu as defined in C99. CC kernel/auditsc.o kernel/auditsc.c: In function 'audit_log_single_execve_arg': kernel/auditsc.c:1074: warning: format '%ld' expects type 'long int', but

Re: [PATCH] Audit: Fix the format type for size_t variables

2008-02-27 Thread Paul Moore
On Wednesday 27 February 2008 12:45:05 pm Paul Moore wrote: On Wednesday 27 February 2008 11:22:01 am Eric Paris wrote: On Wed, 2008-02-27 at 10:39 -0500, Paul Moore wrote: Fix the following compiler warning by using %zu as defined in C99. CC kernel/auditsc.o