diff options
| author | 2010-05-24 17:32:39 +0200 | |
|---|---|---|
| committer | 2010-05-26 01:39:27 +0200 | |
| commit | c85b32434962a2999f9e6872bba4d24433e13577 (patch) | |
| tree | 2cc9b0ba3ec9bbb7bc9621984175b6e0c6d22379 /libusbmuxd/sock_stuff.h | |
| parent | 93819beb8ee272f7e03d9c92ab0e02e1bb24c7c0 (diff) | |
| download | usbmuxd-c85b32434962a2999f9e6872bba4d24433e13577.tar.gz usbmuxd-c85b32434962a2999f9e6872bba4d24433e13577.tar.bz2 | |
libusbmuxd: rename FD_* enum values to FDM_* to prevent conflicts
This seems to be a win32 issue only. But this rename doesn't hurt!
Diffstat (limited to 'libusbmuxd/sock_stuff.h')
| -rw-r--r-- | libusbmuxd/sock_stuff.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/libusbmuxd/sock_stuff.h b/libusbmuxd/sock_stuff.h index 282da68..eb53359 100644 --- a/libusbmuxd/sock_stuff.h +++ b/libusbmuxd/sock_stuff.h @@ -27,9 +27,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA  #include <stdint.h>  enum fd_mode { -	FD_READ, -	FD_WRITE, -	FD_EXCEPT +	FDM_READ, +	FDM_WRITE, +	FDM_EXCEPT  };  typedef enum fd_mode fd_mode; | 
