diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-31 07:25:45 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-31 07:25:45 -0700 |
commit | e8b7952eba4d578dc47ce1f63f9d469dbb9f0de6 (patch) | |
tree | 29ef3c86421f87f3349a4300ac026a9a640fd88d /src/core/lib/slice | |
parent | be216f5753f6dd9bf6e0b7a68d3c03a6206cf183 (diff) |
Fix include guards
Diffstat (limited to 'src/core/lib/slice')
-rw-r--r-- | src/core/lib/slice/b64.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/lib/slice/b64.h b/src/core/lib/slice/b64.h index ef52291c6a..5cc821f4bf 100644 --- a/src/core/lib/slice/b64.h +++ b/src/core/lib/slice/b64.h @@ -31,8 +31,8 @@ * */ -#ifndef GRPC_CORE_LIB_SECURITY_UTIL_B64_H -#define GRPC_CORE_LIB_SECURITY_UTIL_B64_H +#ifndef GRPC_CORE_LIB_SLICE_B64_H +#define GRPC_CORE_LIB_SLICE_B64_H #include <grpc/slice.h> @@ -62,4 +62,4 @@ grpc_slice grpc_base64_decode(grpc_exec_ctx *exec_ctx, const char *b64, grpc_slice grpc_base64_decode_with_len(grpc_exec_ctx *exec_ctx, const char *b64, size_t b64_len, int url_safe); -#endif /* GRPC_CORE_LIB_SECURITY_UTIL_B64_H */ +#endif /* GRPC_CORE_LIB_SLICE_B64_H */ |