From 2c5bac191fdfe573446cbe97d783d53afe693400 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Thu, 17 May 2012 07:17:10 +0000 Subject: [PATCH] Remove useless pointer cast --- examples/pn53x-tamashell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pn53x-tamashell.c b/examples/pn53x-tamashell.c index 21d9284..c545e0c 100644 --- a/examples/pn53x-tamashell.c +++ b/examples/pn53x-tamashell.c @@ -177,7 +177,7 @@ int main(int argc, const char* argv[]) continue; } printf("Tx: "); - print_hex((uint8_t*)abtTx,szTx); + print_hex(abtTx,szTx); szRx = sizeof(abtRx); int res = 0;