Skip to content

Commit

Permalink
Merge pull request IoLanguage#180 from madx/master
Browse files Browse the repository at this point in the history
[SQLite3] fix the missing semicolon
  • Loading branch information
stevedekorte committed Jan 10, 2012
2 parents bd0df87 + 75ad8db commit a926245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/SQLite3/source/IoSQLite3.c
Expand Up @@ -230,7 +230,7 @@ IoObject *IoSQLite3_open(IoSQLite3 *self, IoObject *locals, IoMessage *m)
DATA(self)->path = IOREF(IoMessage_locals_symbolArgAt_(m, locals, 0));
}

IoSQLite3_justOpen(self)
IoSQLite3_justOpen(self);
return self;
}

Expand Down

0 comments on commit a926245

Please sign in to comment.