Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
191f1eb4
Commit
191f1eb4
authored
7 years ago
by
Muxi Yan
Browse files
Options
Downloads
Patches
Plain Diff
Remove loop initial declaration
parent
deb5565b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/core/end2end/fixtures/h2_full+workarounds.c
+2
-1
2 additions, 1 deletion
test/core/end2end/fixtures/h2_full+workarounds.c
with
2 additions
and
1 deletion
test/core/end2end/fixtures/h2_full+workarounds.c
+
2
−
1
View file @
191f1eb4
...
...
@@ -83,10 +83,11 @@ void chttp2_init_client_fullstack(grpc_end2end_test_fixture *f,
void
chttp2_init_server_fullstack
(
grpc_end2end_test_fixture
*
f
,
grpc_channel_args
*
server_args
)
{
int
i
;
grpc_exec_ctx
exec_ctx
=
GRPC_EXEC_CTX_INIT
;
fullstack_fixture_data
*
ffd
=
f
->
fixture_data
;
grpc_arg
args
[
GRPC_MAX_WORKAROUND_ID
];
for
(
uint32_t
i
=
0
;
i
<
GRPC_MAX_WORKAROUND_ID
;
i
++
)
{
for
(
i
=
0
;
i
<
GRPC_MAX_WORKAROUND_ID
;
i
++
)
{
args
[
i
].
key
=
workarounds_arg
[
i
];
args
[
i
].
type
=
GRPC_ARG_INTEGER
;
args
[
i
].
value
.
integer
=
1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment