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
emulab
emulab-devel
Commits
ba2c7d35
Commit
ba2c7d35
authored
Apr 18, 2003
by
Robert Ricci
Browse files
Fix exit codes
parent
356f56f6
Changes
2
Hide whitespace changes
Inline
Side-by-side
assign/parse_ptop.cc
View file @
ba2c7d35
...
...
@@ -232,7 +232,7 @@ int parse_ptop(tb_pgraph &PG, tb_sgraph &SG, istream& i)
}
}
if
(
errors
>
0
)
{
exit
(
1
);}
if
(
errors
>
0
)
{
exit
(
2
);}
return
num_nodes
;
}
...
...
assign/parse_top.cc
View file @
ba2c7d35
...
...
@@ -253,7 +253,7 @@ int parse_top(tb_vgraph &VG, istream& i)
}
}
if
(
errors
>
0
)
{
exit
(
1
);}
if
(
errors
>
0
)
{
exit
(
2
);}
return
num_nodes
;
}
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