Skip to content
Snippets Groups Projects
Commit bee6a33c authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix include guards

parent 52ee5a36
No related branches found
No related tags found
No related merge requests found
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
* Automatically generated by tools/codegen/core/gen_settings_ids.py * Automatically generated by tools/codegen/core/gen_settings_ids.py
*/ */
#ifndef SRC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H #ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H
#define SRC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H #define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
...@@ -71,4 +71,4 @@ typedef struct { ...@@ -71,4 +71,4 @@ typedef struct {
extern const grpc_chttp2_setting_parameters extern const grpc_chttp2_setting_parameters
grpc_chttp2_settings_parameters[GRPC_CHTTP2_NUM_SETTINGS]; grpc_chttp2_settings_parameters[GRPC_CHTTP2_NUM_SETTINGS];
#endif /* SRC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H */ #endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H */
...@@ -80,8 +80,8 @@ with open(sys.argv[0]) as my_source: ...@@ -80,8 +80,8 @@ with open(sys.argv[0]) as my_source:
put_banner([H,C], ["Automatically generated by tools/codegen/core/gen_settings_ids.py"]) put_banner([H,C], ["Automatically generated by tools/codegen/core/gen_settings_ids.py"])
print >>H, "#ifndef SRC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H" print >>H, "#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H"
print >>H, "#define SRC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H" print >>H, "#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H"
print >>H print >>H
print >>H, "#include <stdint.h>" print >>H, "#include <stdint.h>"
print >>H, "#include <stdbool.h>" print >>H, "#include <stdbool.h>"
...@@ -176,7 +176,7 @@ for decorated_setting in sorted(decorated_settings): ...@@ -176,7 +176,7 @@ for decorated_setting in sorted(decorated_settings):
print >>C, "};" print >>C, "};"
print >>H print >>H
print >>H, "#endif /* SRC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H */" print >>H, "#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_SETTINGS_H */"
H.close() H.close()
C.close() C.close()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment