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

Fix sanity: check_include_guards

parent 032baa83
No related branches found
No related tags found
No related merge requests found
...@@ -31,8 +31,8 @@ ...@@ -31,8 +31,8 @@
* *
*/ */
#ifndef GRPC_ERROR_INTERNAL_H #ifndef GRPC_CORE_LIB_IOMGR_ERROR_INTERNAL_H
#define GRPC_ERROR_INTERNAL_H #define GRPC_CORE_LIB_IOMGR_ERROR_INTERNAL_H
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h> #include <stdbool.h>
...@@ -51,4 +51,4 @@ struct grpc_error { ...@@ -51,4 +51,4 @@ struct grpc_error {
bool grpc_error_is_special(grpc_error *err); bool grpc_error_is_special(grpc_error *err);
#endif #endif /* GRPC_CORE_LIB_IOMGR_ERROR_INTERNAL_H */
...@@ -31,8 +31,8 @@ ...@@ -31,8 +31,8 @@
* *
*/ */
#ifndef GRPC_ERROR_UTILS_H #ifndef GRPC_CORE_LIB_TRANSPORT_ERROR_UTILS_H
#define GRPC_ERROR_UTILS_H #define GRPC_CORE_LIB_TRANSPORT_ERROR_UTILS_H
#include "src/core/lib/iomgr/error.h" #include "src/core/lib/iomgr/error.h"
#include "src/core/lib/transport/http2_errors.h" #include "src/core/lib/transport/http2_errors.h"
...@@ -53,4 +53,4 @@ void grpc_error_get_status(grpc_error *error, gpr_timespec deadline, ...@@ -53,4 +53,4 @@ void grpc_error_get_status(grpc_error *error, gpr_timespec deadline,
/// GRPC_ERROR_CANCELLED /// GRPC_ERROR_CANCELLED
bool grpc_error_has_clear_grpc_status(grpc_error *error); bool grpc_error_has_clear_grpc_status(grpc_error *error);
#endif #endif /* GRPC_CORE_LIB_TRANSPORT_ERROR_UTILS_H */
...@@ -31,8 +31,8 @@ ...@@ -31,8 +31,8 @@
* *
*/ */
#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_ERRORS_H #ifndef GRPC_CORE_LIB_TRANSPORT_HTTP2_ERRORS_H
#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_ERRORS_H #define GRPC_CORE_LIB_TRANSPORT_HTTP2_ERRORS_H
/* error codes for RST_STREAM from http2 draft 14 section 7 */ /* error codes for RST_STREAM from http2 draft 14 section 7 */
typedef enum { typedef enum {
...@@ -53,4 +53,4 @@ typedef enum { ...@@ -53,4 +53,4 @@ typedef enum {
GRPC_HTTP2__ERROR_DO_NOT_USE = -1 GRPC_HTTP2__ERROR_DO_NOT_USE = -1
} grpc_http2_error_code; } grpc_http2_error_code;
#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HTTP2_ERRORS_H */ #endif /* GRPC_CORE_LIB_TRANSPORT_HTTP2_ERRORS_H */
...@@ -31,8 +31,8 @@ ...@@ -31,8 +31,8 @@
* *
*/ */
#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_STATUS_CONVERSION_H #ifndef GRPC_CORE_LIB_TRANSPORT_STATUS_CONVERSION_H
#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_STATUS_CONVERSION_H #define GRPC_CORE_LIB_TRANSPORT_STATUS_CONVERSION_H
#include <grpc/grpc.h> #include <grpc/grpc.h>
#include "src/core/lib/transport/http2_errors.h" #include "src/core/lib/transport/http2_errors.h"
...@@ -46,4 +46,4 @@ grpc_status_code grpc_http2_error_to_grpc_status(grpc_http2_error_code error, ...@@ -46,4 +46,4 @@ grpc_status_code grpc_http2_error_to_grpc_status(grpc_http2_error_code error,
grpc_status_code grpc_http2_status_to_grpc_status(int status); grpc_status_code grpc_http2_status_to_grpc_status(int status);
int grpc_status_to_http2_status(grpc_status_code status); int grpc_status_to_http2_status(grpc_status_code status);
#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_STATUS_CONVERSION_H */ #endif /* GRPC_CORE_LIB_TRANSPORT_STATUS_CONVERSION_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment