1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-09-28 14:55:26 +00:00

HACKING: Fix style around signals

We actually never used the array initialization as suggested.
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-07-13 18:52:49 +02:00 committed by Evangelos Ribeiro Tzaras
parent 6893cba3b0
commit 41fe9033ac

View file

@ -95,7 +95,7 @@ individual C files should be structured as (top to bottom of file):
BAR_TRIGGERED, BAR_TRIGGERED,
N_SIGNALS N_SIGNALS
}; };
static guint signals[N_SIGNALS] = { 0 }; static guint signals[N_SIGNALS];
``` ```
- type definitions - type definitions
```c ```c