From 4a3a185857ebfc977a61994729094cbbf970ccac Mon Sep 17 00:00:00 2001 From: Romuald Conty Date: Fri, 1 Oct 2010 11:00:27 +0000 Subject: [PATCH] Fix bad indent Update issue 84 Indent insert some blank lines. --- include/nfc/nfc-types.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/include/nfc/nfc-types.h b/include/nfc/nfc-types.h index ae4c12b..1b959c2 100644 --- a/include/nfc/nfc-types.h +++ b/include/nfc/nfc-types.h @@ -123,15 +123,11 @@ struct driver_callbacks { /** Pick devices callback */ nfc_device_desc_t *(*pick_device) (void); /** List devices callback */ - bool (*list_devices) (nfc_device_desc_t pnddDevices[], size_t szDevices, size_t * pszDeviceFound); + bool (*list_devices) (nfc_device_desc_t pnddDevices[], size_t szDevices, size_t * pszDeviceFound); /** Connect callback */ nfc_device_t *(*connect) (const nfc_device_desc_t * pndd); /** Transceive callback */ - - - - bool (*transceive) (nfc_device_t * pnd, const byte_t * pbtTx, const size_t szTxLen, byte_t * pbtRx, - size_t * pszRxLen); + bool (*transceive) (nfc_device_t * pnd, const byte_t * pbtTx, const size_t szTxLen, byte_t * pbtRx, size_t * pszRxLen); /** Disconnect callback */ void (*disconnect) (nfc_device_t * pnd); };