aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support/stack_lockfree.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/support/stack_lockfree.h')
-rw-r--r--src/core/support/stack_lockfree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/support/stack_lockfree.h b/src/core/support/stack_lockfree.h
index f1d8c77279..0bcf73635d 100644
--- a/src/core/support/stack_lockfree.h
+++ b/src/core/support/stack_lockfree.h
@@ -38,7 +38,7 @@ typedef struct gpr_stack_lockfree gpr_stack_lockfree;
/* This stack must specify the maximum number of entries to track.
The current implementation only allows up to 65534 entries */
-gpr_stack_lockfree *gpr_stack_lockfree_create(int entries);
+gpr_stack_lockfree* gpr_stack_lockfree_create(int entries);
void gpr_stack_lockfree_destroy(gpr_stack_lockfree* stack);
/* Pass in a valid entry number for the next stack entry */
@@ -47,4 +47,4 @@ void gpr_stack_lockfree_push(gpr_stack_lockfree* stack, int entry);
/* Returns -1 on empty or the actual entry number */
int gpr_stack_lockfree_pop(gpr_stack_lockfree* stack);
-#endif /* GRPC_INTERNAL_CORE_SUPPORT_STACK_LOCKFREE_H */
+#endif /* GRPC_INTERNAL_CORE_SUPPORT_STACK_LOCKFREE_H */