diff options
author | Martin Szulecki | 2020-06-07 14:41:50 +0200 |
---|---|---|
committer | Martin Szulecki | 2020-06-07 14:41:50 +0200 |
commit | 03ba291453b992101a3fa15cc4469f1cc053927c (patch) | |
tree | dd00b1a89d26259a404542c84bbc13ed1a130a94 /tools | |
parent | 9a7f686ce7f6dc5298cef8a6e665bee673b6139d (diff) | |
download | libimobiledevice-03ba291453b992101a3fa15cc4469f1cc053927c.tar.gz libimobiledevice-03ba291453b992101a3fa15cc4469f1cc053927c.tar.bz2 |
idevice_id: Fix lowercase typo in device list connection type label
Diffstat (limited to 'tools')
-rw-r--r-- | tools/idevice_id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/idevice_id.c b/tools/idevice_id.c index 18240bf..98fd22d 100644 --- a/tools/idevice_id.c +++ b/tools/idevice_id.c @@ -161,7 +161,7 @@ int main(int argc, char **argv) printf("%s", dev_list[i]->udid); if (include_usb && include_network) { if (dev_list[i]->conn_type == CONNECTION_NETWORK) { - printf(" (network)"); + printf(" (Network)"); } else { printf(" (USB)"); } |