diff mbox series

lib/tst_safe_posix_ipc: Use %zu to format size_t

Message ID 20230214095027.9614-1-rpalethorpe@suse.com
State Accepted
Headers show
Series lib/tst_safe_posix_ipc: Use %zu to format size_t | expand

Commit Message

Richard Palethorpe Feb. 14, 2023, 9:50 a.m. UTC
Prevents compiler warning on 32bit

Signed-off-by: Richard Palethorpe <rpalethorpe@suse.com>
---
 include/tst_safe_posix_ipc.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Cyril Hrubis Feb. 14, 2023, 10:52 a.m. UTC | #1
Hi!
This would classify as obviously correct, so you could have just pushed
the patch and then send it as FYI to the list with [COMMITED] in the
subject.

Anyways:

Reviewed-by: Cyril Hrubis <chrubis@suse.cz>

> ---
>  include/tst_safe_posix_ipc.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/tst_safe_posix_ipc.h b/include/tst_safe_posix_ipc.h
> index 2d3d0928f..e7892f2af 100644
> --- a/include/tst_safe_posix_ipc.h
> +++ b/include/tst_safe_posix_ipc.h
> @@ -121,7 +121,7 @@ static inline int safe_mq_send(const char *file, const int lineno,
>  
>  	if (rval == -1) {
>  		tst_brk_(file, lineno, TBROK | TERRNO,
> -			"mq_send(%d,%s,%lu,%d) failed", mqdes, msg_ptr,
> +			"mq_send(%d,%s,%zu,%d) failed", mqdes, msg_ptr,
>  			msg_len, msg_prio);
>  	}
>  
> -- 
> 2.39.1
> 
> 
> -- 
> Mailing list info: https://lists.linux.it/listinfo/ltp
Petr Vorel Feb. 14, 2023, 9:53 p.m. UTC | #2
Hi Richie, Cyril,

thanks, merged!

Kind regards,
Petr
diff mbox series

Patch

diff --git a/include/tst_safe_posix_ipc.h b/include/tst_safe_posix_ipc.h
index 2d3d0928f..e7892f2af 100644
--- a/include/tst_safe_posix_ipc.h
+++ b/include/tst_safe_posix_ipc.h
@@ -121,7 +121,7 @@  static inline int safe_mq_send(const char *file, const int lineno,
 
 	if (rval == -1) {
 		tst_brk_(file, lineno, TBROK | TERRNO,
-			"mq_send(%d,%s,%lu,%d) failed", mqdes, msg_ptr,
+			"mq_send(%d,%s,%zu,%d) failed", mqdes, msg_ptr,
 			msg_len, msg_prio);
 	}