Skip to content

Commit

Permalink
makedef: Cosmetics: Consistent if/unless spacing
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
  • Loading branch information
dwbuiten committed Oct 18, 2012
1 parent 27f3573 commit f97834b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makedef
Expand Up @@ -33,7 +33,7 @@ unless (-e $vscript) {
}

foreach my $object (@objects) {
unless(-e $object) {
unless (-e $object) {
print("Object does not exist: $object\n");
exit(0);
}
Expand Down Expand Up @@ -88,7 +88,7 @@ if ($?) {
}

# Delete the temp lib, as we no longer need it.
if(!unlink($lib)) {
if (!unlink($lib)) {
print("Could not delete temporary library.\n");
exit(1);
}
Expand Down

0 comments on commit f97834b

Please sign in to comment.