pespin has uploaded this change for review.

View Change

cosmetic: layer23: Drop unnecessary space before function pointer arguments

As requested by linter.

Change-Id: I87e1857722b9181d0187bdeabe3fa1f4e63463d0
---
M src/host/layer23/include/osmocom/bb/common/l23_app.h
M src/host/layer23/src/common/main.c
2 files changed, 4 insertions(+), 4 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/44/30944/1
diff --git a/src/host/layer23/include/osmocom/bb/common/l23_app.h b/src/host/layer23/include/osmocom/bb/common/l23_app.h
index 0b9994c..d5f0fd3 100644
--- a/src/host/layer23/include/osmocom/bb/common/l23_app.h
+++ b/src/host/layer23/include/osmocom/bb/common/l23_app.h
@@ -16,8 +16,8 @@
/* initialization, called once when starting the app, before entering
* select loop */
extern int l23_app_init(struct osmocom_ms *ms);
-extern int (*l23_app_work) (struct osmocom_ms *ms);
-extern int (*l23_app_exit) (struct osmocom_ms *ms);
+extern int (*l23_app_work)(struct osmocom_ms *ms);
+extern int (*l23_app_exit)(struct osmocom_ms *ms);

/* configuration options */
struct l23_app_info {
diff --git a/src/host/layer23/src/common/main.c b/src/host/layer23/src/common/main.c
index f714010..6841313 100644
--- a/src/host/layer23/src/common/main.c
+++ b/src/host/layer23/src/common/main.c
@@ -54,8 +54,8 @@
static char *vty_ip = "127.0.0.1";

unsigned short vty_port = 4247;
-int (*l23_app_work) (struct osmocom_ms *ms) = NULL;
-int (*l23_app_exit) (struct osmocom_ms *ms) = NULL;
+int (*l23_app_work)(struct osmocom_ms *ms) = NULL;
+int (*l23_app_exit)(struct osmocom_ms *ms) = NULL;
int quit = 0;
struct gsmtap_inst *gsmtap_inst;


To view, visit change 30944. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I87e1857722b9181d0187bdeabe3fa1f4e63463d0
Gerrit-Change-Number: 30944
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin@sysmocom.de>
Gerrit-MessageType: newchange