Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
5e8fb192
Commit
5e8fb192
authored
Jul 16, 2004
by
Niels Möller
Browse files
(do_background_process): Fixed C99-ism.
Rev: src/client.c:1.164
parent
4fcb07c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/client.c
View file @
5e8fb192
...
...
@@ -895,10 +895,11 @@ do_background_process(struct command *s,
struct
exception_handler
*
e
UNUSED
)
{
CAST
(
background_process_command
,
self
,
s
);
pid_t
pid
;
trace
(
"do_background_process
\n
"
);
pid_t
pid
=
fork
();
pid
=
fork
();
switch
(
pid
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment