diff options
author | David Garcia Quintas <dgq@google.com> | 2016-03-18 10:14:27 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-03-18 10:14:27 -0700 |
commit | c14f1cbe9a40ab51a6b9ba6b7be2036929744977 (patch) | |
tree | d1840ebb919c71b307a9520b9c9e39facfdc2f94 /src | |
parent | 37266f376b19416705f51b996129dd94b617cec9 (diff) |
new fixed guards
Diffstat (limited to 'src')
-rw-r--r-- | src/core/support/backoff.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/support/backoff.h b/src/core/support/backoff.h index 3234aa214d..f7730fde2a 100644 --- a/src/core/support/backoff.h +++ b/src/core/support/backoff.h @@ -31,8 +31,8 @@ * */ -#ifndef GRPC_INTERNAL_CORE_SUPPORT_BACKOFF_H -#define GRPC_INTERNAL_CORE_SUPPORT_BACKOFF_H +#ifndef GRPC_CORE_SUPPORT_BACKOFF_H +#define GRPC_CORE_SUPPORT_BACKOFF_H #include <grpc/support/time.h> @@ -62,4 +62,4 @@ gpr_timespec gpr_backoff_begin(gpr_backoff *backoff, gpr_timespec now); /// Step a retry loop: returns a timespec for the NEXT retry gpr_timespec gpr_backoff_step(gpr_backoff *backoff, gpr_timespec now); -#endif // GRPC_INTERNAL_CORE_SUPPORT_BACKOFF_H +#endif /* GRPC_CORE_SUPPORT_BACKOFF_H */ |