Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dd7760ec authored by Jack He's avatar Jack He
Browse files

Added void keyword to function declaration and definition

Change-Id: I79ac76e64e836551cfd555a7b9786d254fcbc07a
parent 0b5ed212
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ typedef struct {
  config_t *(*get_all)(void);
} stack_config_t;

const stack_config_t *stack_config_get_interface();
const stack_config_t *stack_config_get_interface(void);

#ifdef __cplusplus
}
+1 −1
Original line number Diff line number Diff line
@@ -131,6 +131,6 @@ const stack_config_t interface = {
  get_all
};

const stack_config_t *stack_config_get_interface() {
const stack_config_t *stack_config_get_interface(void) {
  return &interface;
}