diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-01-31 10:45:54 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-01-31 15:18:35 +0100 |
commit | 9e24226364f9c635160cdb0ca8a404781091ba7b (patch) | |
tree | f8aaeddf6c096a231158b3315736b41d459b2c1d /plugins/pantech/mm-plugin-pantech.c | |
parent | accd1a5841bafc81aa87db46eb35a8255ced4e22 (diff) |
port-probe: MMPortProbeAtCommand always has constant command strings
Diffstat (limited to 'plugins/pantech/mm-plugin-pantech.c')
-rw-r--r-- | plugins/pantech/mm-plugin-pantech.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/pantech/mm-plugin-pantech.c b/plugins/pantech/mm-plugin-pantech.c index 312cb324..66eb6453 100644 --- a/plugins/pantech/mm-plugin-pantech.c +++ b/plugins/pantech/mm-plugin-pantech.c @@ -66,9 +66,9 @@ port_probe_response_processor_is_pantech_at (const gchar *command, } static const MMPortProbeAtCommand custom_at_probe[] = { - { (gchar *) "ATE0", 3, port_probe_response_processor_is_pantech_at }, - { (gchar *) "ATE0", 3, port_probe_response_processor_is_pantech_at }, - { (gchar *) "ATE0", 3, port_probe_response_processor_is_pantech_at }, + { "ATE0", 3, port_probe_response_processor_is_pantech_at }, + { "ATE0", 3, port_probe_response_processor_is_pantech_at }, + { "ATE0", 3, port_probe_response_processor_is_pantech_at }, { NULL } }; |