diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-08-29 15:52:12 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-08-29 15:52:12 -0700 |
commit | 407b4dbfd15fb120a06a9c2da4fe77137aebdacf (patch) | |
tree | 21814eb0858273cb76a50c9f1860d3e8cc9c5a96 /FS | |
parent | af6c7cfb1670812193223561fa3cfe7e6ba53acc (diff) |
quiet "Posible precedence issue with control flow operator" warning under 5.20+ (deb 8)
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/qual.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/qual.pm b/FS/FS/qual.pm index 07878e9c2..04ee0e152 100644 --- a/FS/FS/qual.pm +++ b/FS/FS/qual.pm @@ -180,7 +180,7 @@ sub part_export { my $self = shift; if ( $self->exportnum ) { return qsearchs('part_export', { exportnum => $self->exportnum } ) - or die 'invalid exportnum'; + || die 'invalid exportnum'; } ''; } |