diff --git a/typo3/sysext/dbal/Classes/Database/AdodbPreparedStatement.php b/typo3/sysext/dbal/Classes/Database/AdodbPreparedStatement.php
index 95204df18211cb771043c036ac8c61b60fc3c2d5..566b942ac279bf40e57c67a75474fa4b11a793f2 100644
--- a/typo3/sysext/dbal/Classes/Database/AdodbPreparedStatement.php
+++ b/typo3/sysext/dbal/Classes/Database/AdodbPreparedStatement.php
@@ -164,7 +164,7 @@ class AdodbPreparedStatement extends \TYPO3\CMS\Dbal\Database\DatabaseConnection
 				// If there are two parameters, do mapping differently than otherwise:
 				$numRows = $splitLimit[1];
 				$offset = $splitLimit[0];
-				$limit = $numrows . ' OFFSET ' . $offset;
+				$limit = $numRows . ' OFFSET ' . $offset;
 			}
 		}
 		if ($limit !== '') {