From cd98a43e1a976784aae4a477b736d4ca4e1c7778 Mon Sep 17 00:00:00 2001 From: ligc Date: Tue, 23 Aug 2011 06:32:32 +0000 Subject: [PATCH] fix for bug 3396712: table.pm perl syntax warning git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10343 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Table.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-xCAT/xCAT/Table.pm b/perl-xCAT/xCAT/Table.pm index 336fe4681..5c75b5e9f 100644 --- a/perl-xCAT/xCAT/Table.pm +++ b/perl-xCAT/xCAT/Table.pm @@ -3806,7 +3806,7 @@ sub writeAllEntries $rc=output_table($self->{tabname},$fh,$self,$data); } $query->finish(); - close $fh; + CORE::close $fh; return $rc; } @@ -3892,7 +3892,7 @@ sub writeAllAttribsWhere $rc=output_table($self->{tabname},$fh,$self,$data); } $query->finish(); - close $fh; + CORE::close $fh; return $rc ; } #--------------------------------------------------------------------------