diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-10-11 14:08:28 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-10-11 19:40:54 +0200 |
commit | ac9455efdd4b455acf1ead9eccd549ff662ccf81 (patch) | |
tree | 6833dcf884ad4461e7c2e109c3adda76cca1c068 /src/rfkill/rfkill.c | |
parent | 0a41d91f3022ae5107151ebd1af9b65a55030c7e (diff) |
rfkill: consistently use = in designator
Diffstat (limited to 'src/rfkill/rfkill.c')
-rw-r--r-- | src/rfkill/rfkill.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rfkill/rfkill.c b/src/rfkill/rfkill.c index d8a2f3694e..72c9eb4446 100644 --- a/src/rfkill/rfkill.c +++ b/src/rfkill/rfkill.c @@ -40,8 +40,8 @@ static const char* const rfkill_type_table[NUM_RFKILL_TYPES] = { [RFKILL_TYPE_WIMAX] = "wimax", [RFKILL_TYPE_WWAN] = "wwan", [RFKILL_TYPE_GPS] = "gps", - [RFKILL_TYPE_FM] "fm", - [RFKILL_TYPE_NFC] "nfc", + [RFKILL_TYPE_FM] = "fm", + [RFKILL_TYPE_NFC] = "nfc", }; DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(rfkill_type, int); |