Skip to content

Commit

Permalink
Merge pull request #462 from StephenWampler/master
Browse files Browse the repository at this point in the history
Fix call to open() on a database.
  • Loading branch information
Jafaral authored May 20, 2024
2 parents f38d731 + 5b57874 commit f701243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uni/lib/database.icn
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Database : Object (dsn, db_table, db, dbu, blockDepth)
password) # Password for that user.
static real_open
initial real_open := ::proc("open")
return \accessDb(real_open(dsn,"o",db_table,user,password))
return \accessDb(real_open(db_table,"o",user,password))
end

#<p>
Expand Down

0 comments on commit f701243

Please sign in to comment.