From d4488ac4e195d4b32d79752f154d7a92ec5a0aaa Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 9 Jun 2020 12:18:29 -0400 Subject: [PATCH] spacing --- scripts/zmupdate.pl.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/zmupdate.pl.in b/scripts/zmupdate.pl.in index 619527128..ad2f0150f 100644 --- a/scripts/zmupdate.pl.in +++ b/scripts/zmupdate.pl.in @@ -329,8 +329,8 @@ if ( $interactive ) { # Now check for MyISAM Tables my @MyISAM_Tables; my $sql = "SELECT `table_name` FROM INFORMATION_SCHEMA.TABLES WHERE `table_schema`='zm' AND `engine` = 'MyISAM'"; - my $sth = $dbh->prepare_cached( $sql ) or die( "Can't prepare '$sql': ".$dbh->errstr() ); - my $res = $sth->execute() or die( "Can't execute: ".$sth->errstr() ); + my $sth = $dbh->prepare_cached($sql) or die("Can't prepare '$sql': ".$dbh->errstr()); + my $res = $sth->execute() or die("Can't execute: ".$sth->errstr()); while( my $dbTable = $sth->fetchrow() ) { push @MyISAM_Tables, $dbTable;