diff options
author | Nikias Bassen | 2010-01-13 01:45:42 +0100 |
---|---|---|
committer | Martin Szulecki | 2010-01-13 01:54:05 +0100 |
commit | 471c997e66015a093afa9146d764d678514fed52 (patch) | |
tree | 70df4bc44ce21ed68c1f246564edeab9543dd3b8 /tools | |
parent | 5c19d486959454560515666b0d250c20d9938d00 (diff) | |
download | libimobiledevice-471c997e66015a093afa9146d764d678514fed52.tar.gz libimobiledevice-471c997e66015a093afa9146d764d678514fed52.tar.bz2 |
lockdown/tools/python: use correct type for port parameter
Diffstat (limited to 'tools')
-rw-r--r-- | tools/iphonesyslog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/iphonesyslog.c b/tools/iphonesyslog.c index 195fc7c..017956e 100644 --- a/tools/iphonesyslog.c +++ b/tools/iphonesyslog.c @@ -49,7 +49,7 @@ int main(int argc, char *argv[]) iphone_error_t ret = IPHONE_E_UNKNOWN_ERROR; int i; char uuid[41]; - int port = 0; + uint16_t port = 0; uuid[0] = 0; signal(SIGINT, clean_exit); |