summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-02 20:48:32 -0400
committerDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-02 20:48:32 -0400
commit12272e1e97a0b505ec62a74122f279578cd003d4 (patch)
treec518f33318b42dc13e97b3769bfb76dcebb1460a
parenta8a34a8b51a40f1db189b5c664139bc59b56ade9 (diff)
downloadsloccount-git-12272e1e97a0b505ec62a74122f279578cd003d4.tar.gz
Fix bug in break_filelist in pig checking
-rwxr-xr-xbreak_filelist4
1 files changed, 2 insertions, 2 deletions
diff --git a/break_filelist b/break_filelist
index 4c8ca73..a6fea48 100755
--- a/break_filelist
+++ b/break_filelist
@@ -647,8 +647,8 @@ sub really_is_pig {
}
close(PIG_FILE);
- if ( ($script_semicolon == 1 && $script_equals == 1 && ($script_foreach == 3 ||
- &script_dataset == 3 || $script_input_output == 3) ) {
+ if ( $script_semicolon == 1 && $script_equals == 1 && ($script_foreach == 3 ||
+ $script_dataset == 3 || $script_input_output == 3) ) {
$is_pig = 1;
}