Skip to content

Commit

Permalink
fix missing semicolon in SQLite3 ext
Browse files Browse the repository at this point in the history
  • Loading branch information
madx committed Jan 10, 2012
1 parent bd0df87 commit 75ad8db
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 75ad8db

Please sign in to comment.