summaryrefslogtreecommitdiffstats
path: root/bindings/radio/radio-rtlsdr.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-07-27 17:44:27 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-07-27 17:44:27 +0200
commitbbddc1e584dd01b60042f622f8cecfc69361020b (patch)
tree35b8122ddb62325ee519ed45e3658cbf13e68bca /bindings/radio/radio-rtlsdr.c
parent1ea6bd0f466a10d29f12801aa35fb6d2b30443a1 (diff)
fix unexpected ending spaces
Change-Id: Ie7ebccb02b42e91457df3bdbf2a6f037b248400e Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'bindings/radio/radio-rtlsdr.c')
-rw-r--r--bindings/radio/radio-rtlsdr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bindings/radio/radio-rtlsdr.c b/bindings/radio/radio-rtlsdr.c
index 7f76306e..00ceba63 100644
--- a/bindings/radio/radio-rtlsdr.c
+++ b/bindings/radio/radio-rtlsdr.c
@@ -37,13 +37,13 @@ static struct dev_ctx **dev_ctx = NULL;
/* Radio initialization should be done only when user start the radio and not at plugin initialization
Making this call too early would impose to restart the binder to detect a radio */
unsigned char _radio_on (unsigned int num, radioCtxHandleT *ctx) {
-
+
if (num >= _radio_dev_count())
return 0;
-
+
if (init_dev_count < _radio_dev_count()) {
init_dev_count = _radio_dev_count();
- dev_ctx = (dev_ctx_T**) realloc (dev_ctx, init_dev_count * sizeof(dev_ctx_T*));
+ dev_ctx = (dev_ctx_T**) realloc (dev_ctx, init_dev_count * sizeof(dev_ctx_T*));
}
dev_ctx[num] = (dev_ctx_T*) malloc (sizeof(dev_ctx_T));
@@ -69,7 +69,7 @@ void _radio_off (unsigned int num) {
_radio_dev_free (dev_ctx[num]);
free (dev_ctx[num]);
}
-
+
/* free(dev_ctx); */
}