aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ctiller <ctiller@google.com>2014-12-17 12:31:42 -0800
committerGravatar Nicolas Noble <nnoble@google.com>2014-12-17 15:53:55 -0800
commitcd0569a16c98cb23131cf47cf1db92cc7125c32c (patch)
treea5e8372767a6025924ea6662c952f7e209ff3712
parent80b6d014ad9f00ffb67f600d271f63331c7c0fbd (diff)
Fix include guards.
Change on 2014/12/17 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82354016
-rw-r--r--src/core/iomgr/endpoint.h6
-rw-r--r--test/core/iomgr/endpoint_tests.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/core/iomgr/endpoint.h b/src/core/iomgr/endpoint.h
index 14d9a56d55..88949fb03f 100644
--- a/src/core/iomgr/endpoint.h
+++ b/src/core/iomgr/endpoint.h
@@ -31,8 +31,8 @@
*
*/
-#ifndef __GRPC_INTERNAL_ENDPOINT_ENDPOINT_H__
-#define __GRPC_INTERNAL_ENDPOINT_ENDPOINT_H__
+#ifndef __GRPC_INTERNAL_IOMGR_ENDPOINT_H__
+#define __GRPC_INTERNAL_IOMGR_ENDPOINT_H__
#include <grpc/support/slice.h>
#include <grpc/support/time.h>
@@ -96,4 +96,4 @@ struct grpc_endpoint {
const grpc_endpoint_vtable *vtable;
};
-#endif /* __GRPC_INTERNAL_ENDPOINT_ENDPOINT_H__ */
+#endif /* __GRPC_INTERNAL_IOMGR_ENDPOINT_H__ */
diff --git a/test/core/iomgr/endpoint_tests.h b/test/core/iomgr/endpoint_tests.h
index 4f70ad5d8b..c76c9483c6 100644
--- a/test/core/iomgr/endpoint_tests.h
+++ b/test/core/iomgr/endpoint_tests.h
@@ -31,8 +31,8 @@
*
*/
-#ifndef __GRPC_TEST_ENDPOINT_ENDPOINT_TESTS_H__
-#define __GRPC_TEST_ENDPOINT_ENDPOINT_TESTS_H__
+#ifndef __GRPC_TEST_IOMGR_ENDPOINT_TESTS_H__
+#define __GRPC_TEST_IOMGR_ENDPOINT_TESTS_H__
#include <sys/types.h>
@@ -54,4 +54,4 @@ struct grpc_endpoint_test_config {
void grpc_endpoint_tests(grpc_endpoint_test_config config);
-#endif /* __GRPC_TEST_ENDPOINT_ENDPOINT_TESTS_H__ */
+#endif /* __GRPC_TEST_IOMGR_ENDPOINT_TESTS_H__ */