All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] client: Fix printing of array properties
@ 2017-12-13 13:28 Szymon Janc
  2017-12-14  8:25 ` Szymon Janc
  0 siblings, 1 reply; 2+ messages in thread
From: Szymon Janc @ 2017-12-13 13:28 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Szymon Janc

        ServiceData Key: 00001234-0000-1000-8000-00805f9b34fb
        ServiceData Value:
"3D     RSSI: -76
        TxPower: -7
---
 client/main.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/client/main.c b/client/main.c
index f3369e89a..a4b8b0fe5 100644
--- a/client/main.c
+++ b/client/main.c
@@ -184,7 +184,7 @@ static void print_fixed_iter(const char *label, const char *name,
 			return;
 
 		bt_shell_printf("%s%s:\n", label, name);
-		bt_shell_printf((void *)valbool, len * sizeof(*valbool));
+		bt_shell_hexdump((void *)valbool, len * sizeof(*valbool));
 
 		break;
 	case DBUS_TYPE_UINT32:
@@ -194,7 +194,7 @@ static void print_fixed_iter(const char *label, const char *name,
 			return;
 
 		bt_shell_printf("%s%s:\n", label, name);
-		bt_shell_printf((void *)valu32, len * sizeof(*valu32));
+		bt_shell_hexdump((void *)valu32, len * sizeof(*valu32));
 
 		break;
 	case DBUS_TYPE_UINT16:
@@ -204,7 +204,7 @@ static void print_fixed_iter(const char *label, const char *name,
 			return;
 
 		bt_shell_printf("%s%s:\n", label, name);
-		bt_shell_printf((void *)valu16, len * sizeof(*valu16));
+		bt_shell_hexdump((void *)valu16, len * sizeof(*valu16));
 
 		break;
 	case DBUS_TYPE_INT16:
@@ -214,7 +214,7 @@ static void print_fixed_iter(const char *label, const char *name,
 			return;
 
 		bt_shell_printf("%s%s:\n", label, name);
-		bt_shell_printf((void *)vals16, len * sizeof(*vals16));
+		bt_shell_hexdump((void *)vals16, len * sizeof(*vals16));
 
 		break;
 	case DBUS_TYPE_BYTE:
@@ -224,7 +224,7 @@ static void print_fixed_iter(const char *label, const char *name,
 			return;
 
 		bt_shell_printf("%s%s:\n", label, name);
-		bt_shell_printf((void *)byte, len * sizeof(*byte));
+		bt_shell_hexdump((void *)byte, len * sizeof(*byte));
 
 		break;
 	default:
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] client: Fix printing of array properties
  2017-12-13 13:28 [PATCH] client: Fix printing of array properties Szymon Janc
@ 2017-12-14  8:25 ` Szymon Janc
  0 siblings, 0 replies; 2+ messages in thread
From: Szymon Janc @ 2017-12-14  8:25 UTC (permalink / raw)
  To: linux-bluetooth

On Wednesday, 13 December 2017 14:28:31 CET Szymon Janc wrote:
>         ServiceData Key: 00001234-0000-1000-8000-00805f9b34fb
>         ServiceData Value:
> "3D     RSSI: -76
>         TxPower: -7
> ---
>  client/main.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/client/main.c b/client/main.c
> index f3369e89a..a4b8b0fe5 100644
> --- a/client/main.c
> +++ b/client/main.c
> @@ -184,7 +184,7 @@ static void print_fixed_iter(const char *label, const
> char *name, return;
> 
>  		bt_shell_printf("%s%s:\n", label, name);
> -		bt_shell_printf((void *)valbool, len * sizeof(*valbool));
> +		bt_shell_hexdump((void *)valbool, len * sizeof(*valbool));
> 
>  		break;
>  	case DBUS_TYPE_UINT32:
> @@ -194,7 +194,7 @@ static void print_fixed_iter(const char *label, const
> char *name, return;
> 
>  		bt_shell_printf("%s%s:\n", label, name);
> -		bt_shell_printf((void *)valu32, len * sizeof(*valu32));
> +		bt_shell_hexdump((void *)valu32, len * sizeof(*valu32));
> 
>  		break;
>  	case DBUS_TYPE_UINT16:
> @@ -204,7 +204,7 @@ static void print_fixed_iter(const char *label, const
> char *name, return;
> 
>  		bt_shell_printf("%s%s:\n", label, name);
> -		bt_shell_printf((void *)valu16, len * sizeof(*valu16));
> +		bt_shell_hexdump((void *)valu16, len * sizeof(*valu16));
> 
>  		break;
>  	case DBUS_TYPE_INT16:
> @@ -214,7 +214,7 @@ static void print_fixed_iter(const char *label, const
> char *name, return;
> 
>  		bt_shell_printf("%s%s:\n", label, name);
> -		bt_shell_printf((void *)vals16, len * sizeof(*vals16));
> +		bt_shell_hexdump((void *)vals16, len * sizeof(*vals16));
> 
>  		break;
>  	case DBUS_TYPE_BYTE:
> @@ -224,7 +224,7 @@ static void print_fixed_iter(const char *label, const
> char *name, return;
> 
>  		bt_shell_printf("%s%s:\n", label, name);
> -		bt_shell_printf((void *)byte, len * sizeof(*byte));
> +		bt_shell_hexdump((void *)byte, len * sizeof(*byte));
> 
>  		break;
>  	default:

Applied.

-- 
pozdrawiam
Szymon Janc

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-12-14  8:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-13 13:28 [PATCH] client: Fix printing of array properties Szymon Janc
2017-12-14  8:25 ` Szymon Janc

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.