Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Sylvain Joubert
KWSys
Commits
78be817a
Commit
78be817a
authored
21 years ago
by
Brad King
Browse files
Options
Downloads
Patches
Plain Diff
ERR: Fixed use of non-constant initializer.
parent
f4a59c3c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
testProcess.c
+5
-1
5 additions, 1 deletion
testProcess.c
with
5 additions
and
1 deletion
testProcess.c
+
5
−
1
View file @
78be817a
...
...
@@ -166,7 +166,11 @@ int main(int argc, const char* argv[])
int
exceptions
[
4
]
=
{
kwsysProcess_Exception_None
,
kwsysProcess_Exception_None
,
kwsysProcess_Exception_None
,
kwsysProcess_Exception_Fault
};
int
values
[
4
]
=
{
0
,
123
,
1
,
1
};
const
char
*
cmd
[]
=
{
argv
[
0
],
"run"
,
argv
[
1
],
0
};
const
char
*
cmd
[
4
];
cmd
[
0
]
=
argv
[
0
];
cmd
[
1
]
=
"run"
;
cmd
[
2
]
=
argv
[
1
];
cmd
[
3
]
=
0
;
return
runChild
(
cmd
,
states
[
n
-
1
],
exceptions
[
n
-
1
],
values
[
n
-
1
]);
}
else
...
...
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