summaryrefslogtreecommitdiffstats
path: root/src/usbmuxd-proto.h
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2014-09-13 01:06:14 +0200
committerGravatar Nikias Bassen2014-09-13 01:06:14 +0200
commitb7976d2a53b27ec9c42f81a22e91704dbcc5fb53 (patch)
tree6a8ce914448972f357e65b0d37118b4ed685cf28 /src/usbmuxd-proto.h
parente72f2f79df5b72e71195fb7f27f5a0b525d05e4e (diff)
downloadusbmuxd-b7976d2a53b27ec9c42f81a22e91704dbcc5fb53.tar.gz
usbmuxd-b7976d2a53b27ec9c42f81a22e91704dbcc5fb53.tar.bz2
Properly rename header guards according to C++ standard
Diffstat (limited to 'src/usbmuxd-proto.h')
-rw-r--r--src/usbmuxd-proto.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usbmuxd-proto.h b/src/usbmuxd-proto.h
index 7842975..58ff4ea 100644
--- a/src/usbmuxd-proto.h
+++ b/src/usbmuxd-proto.h
@@ -21,8 +21,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21*/ 21*/
22 22
23/* Protocol defintion for usbmuxd proxy protocol */ 23/* Protocol defintion for usbmuxd proxy protocol */
24#ifndef __USBMUXD_PROTO_H 24#ifndef USBMUXD_PROTO_H
25#define __USBMUXD_PROTO_H 25#define USBMUXD_PROTO_H
26 26
27#include <stdint.h> 27#include <stdint.h>
28#define USBMUXD_PROTOCOL_VERSION 0 28#define USBMUXD_PROTOCOL_VERSION 0
@@ -93,4 +93,4 @@ struct usbmuxd_device_record {
93} 93}
94#endif 94#endif
95 95
96#endif /* __USBMUXD_PROTO_H */ 96#endif /* USBMUXD_PROTO_H */