Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(439)

Unified Diff: tests/fib/fib_array.c

Issue 5622003: Restructure the structs/unions involved in SRPC argument passing. This will... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/fake_browser/deferred_srpc_init.c ('k') | tests/inbrowser_test_runner/test_runner.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/fib/fib_array.c
===================================================================
--- tests/fib/fib_array.c (revision 3898)
+++ tests/fib/fib_array.c (working copy)
@@ -27,8 +27,8 @@
int v0 = in_args[0]->u.ival;
int v1 = in_args[1]->u.ival;
int v2;
- int num = out_args[0]->u.iaval.count;
- int32_t *dest = out_args[0]->u.iaval.iarr;
+ int num = out_args[0]->u.count;
+ int32_t *dest = out_args[0]->arrays.iarr;
int i;
if (num < 2) {
« no previous file with comments | « tests/fake_browser/deferred_srpc_init.c ('k') | tests/inbrowser_test_runner/test_runner.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698