diff options
author | Ben Chan <benchan@chromium.org> | 2019-07-10 12:29:40 -0700 |
---|---|---|
committer | Ben Chan <benchan@chromium.org> | 2019-07-10 14:48:22 -0700 |
commit | 8d8b3a722aaeac5ba0e3b735b63e39bb007eee23 (patch) | |
tree | 0267ac6801403d4dd5f42f15e12788ea3d136b36 /include/ModemManager-version.h.in | |
parent | ea93aad8a414a3cdcf6864649e09e3bdf9ac4e5d (diff) |
misc: use g_regex_match() for simplicity
This CL converts a few g_regex_match_full() expressions to their
equivalent g_regex_match() in order to simplify the code, i.e.
g_regex_match_full (regex, str, strlen (str), 0, 0, &match_info, NULL)
is equivalent to:
g_regex_match_full (regex, str, -1, 0, 0, &match_info, NULL)
or simply:
g_regex_match (regex, str, 0, &match_info)
Diffstat (limited to 'include/ModemManager-version.h.in')
0 files changed, 0 insertions, 0 deletions