cosmetic: layer23: Drop unnecessary space before function pointer arguments

As requested by linter.

Change-Id: I87e1857722b9181d0187bdeabe3fa1f4e63463d0
This commit is contained in:
Pau Espin 2023-01-12 13:00:09 +01:00 committed by pespin
parent 7c3eb69c67
commit 372f65d172
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@ enum {
/* 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 {

View File

@ -54,8 +54,8 @@ static char *gsmtap_ip = NULL;
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;