diff options
author | Araq <rumpf_a@web.de> | 2012-05-01 11:14:29 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-05-01 11:14:29 +0200 |
commit | e95f155af32eeb030337708efb3063d1afcf8fba (patch) | |
tree | 5ef44eea33028aaf140d895053c4b29a84761ca1 /lib/impure/db_mysql.nim | |
parent | ccae3146353422e2528455e674ce4ee16384ae99 (diff) | |
download | Nim-e95f155af32eeb030337708efb3063d1afcf8fba.tar.gz |
small bugfixes; documentation generator supports smilies for the forum
Diffstat (limited to 'lib/impure/db_mysql.nim')
-rwxr-xr-x | lib/impure/db_mysql.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/db_mysql.nim b/lib/impure/db_mysql.nim index 4c77c707f..2b94ab614 100755 --- a/lib/impure/db_mysql.nim +++ b/lib/impure/db_mysql.nim @@ -106,7 +106,7 @@ proc getRow*(db: TDbConn, query: TSqlQuery, var sqlres = mysql.UseResult(db) if sqlres != nil: var L = int(mysql.NumFields(sqlres)) - var result = newRow(L) + result = newRow(L) var row = mysql.FetchRow(sqlres) if row != nil: for i in 0..L-1: |