Rename function to simplify

For consistency with sc_adb_parse_device(), do not include "from_output"
in the function name.
This commit is contained in:
Romain Vimont
2022-05-24 21:20:27 +02:00
parent 55e65fa270
commit b1d8c72780
4 changed files with 11 additions and 11 deletions

View File

@@ -710,5 +710,5 @@ sc_adb_get_device_ip(struct sc_intr *intr, const char *serial, unsigned flags) {
// It is parsed as a NUL-terminated string
buf[r] = '\0';
return sc_adb_parse_device_ip_from_output(buf);
return sc_adb_parse_device_ip(buf);
}