diff options
| author | 2022-05-05 01:07:00 +0200 | |
|---|---|---|
| committer | 2022-05-05 01:07:00 +0200 | |
| commit | 36ffb7ab6e2a7e33bd1b56398a88895b7b8c615a (patch) | |
| tree | 0f6082f318d19f29e2054f18409f5df395545c69 /include/usbmuxd.h | |
| parent | a9a639d0102b9bbf30fd088e633c793316dbc873 (diff) | |
| download | libusbmuxd-36ffb7ab6e2a7e33bd1b56398a88895b7b8c615a.tar.gz libusbmuxd-36ffb7ab6e2a7e33bd1b56398a88895b7b8c615a.tar.bz2 | |
Make conn_data member of usbmuxd_device_info struct unsigned since it's not a string
Also remove some pointless casts and update some others
Diffstat (limited to 'include/usbmuxd.h')
| -rw-r--r-- | include/usbmuxd.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/usbmuxd.h b/include/usbmuxd.h index f08a653..6c440c1 100644 --- a/include/usbmuxd.h +++ b/include/usbmuxd.h @@ -52,7 +52,7 @@ typedef struct {  	uint32_t product_id;  	char udid[44];  	enum usbmux_connection_type conn_type; -	char conn_data[200]; +	uint8_t conn_data[200];  } usbmuxd_device_info_t;  /** | 
