diff options
author | Christophe Fergeau | 2008-12-29 12:35:51 +0100 |
---|---|---|
committer | Matt Colyer | 2009-01-02 09:55:08 -0800 |
commit | d77ecbe3fbd73418dd72e147a0ac2a89e62b1cd9 (patch) | |
tree | 6ef70292982a499e36d4e14c529436f889e42be1 /src/usbmux.h | |
parent | 0efa3bc3a3519695f288211d720620cc0672f054 (diff) | |
download | libimobiledevice-d77ecbe3fbd73418dd72e147a0ac2a89e62b1cd9.tar.gz libimobiledevice-d77ecbe3fbd73418dd72e147a0ac2a89e62b1cd9.tar.bz2 |
Fix function prototypes
Add missing static, const, change function() to function(void)
Diffstat (limited to 'src/usbmux.h')
-rw-r--r-- | src/usbmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usbmux.h b/src/usbmux.h index da8a361..fd5fc78 100644 --- a/src/usbmux.h +++ b/src/usbmux.h @@ -56,7 +56,7 @@ typedef struct { uint32 type, length, major, minor, allnull; } usbmux_version_header; -usbmux_version_header *version_header(); +usbmux_version_header *version_header(void); #endif |