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