Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
copiousfreetime committed Sep 14, 2015
1 parent d849ae5 commit 9f862f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ext/amalgalite/c/amalgalite_database.c
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ VALUE am_sqlite3_database_define_function( VALUE self, VALUE name, VALUE proc_li
int nArg = FIX2INT( arity );

Data_Get_Struct(self, am_sqlite3, am_db);
rc = sqlite3_create_function( am_db->db,
rc = sqlite3_create_function( am_db->db,
zFunctionName, nArg,
SQLITE_UTF8,
(void *)proc_like, amalgalite_xFunc,
Expand Down Expand Up @@ -743,7 +743,7 @@ VALUE am_sqlite3_database_remove_function( VALUE self, VALUE name, VALUE proc_li
int nArg = FIX2INT( arity );

Data_Get_Struct(self, am_sqlite3, am_db);
rc = sqlite3_create_function( am_db->db,
rc = sqlite3_create_function( am_db->db,
zFunctionName, nArg,
SQLITE_UTF8,
NULL, NULL,
Expand Down
2 changes: 1 addition & 1 deletion lib/amalgalite/database.rb
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ def remove_function( name, callable_or_arity = nil )
end

to_remove.each do |db_func|
@api.remove_function( db_func.name, db_func)
@api.remove_function( db_func.name, db_func )
@functions.delete( db_func.signature )
end
end
Expand Down

0 comments on commit 9f862f9

Please sign in to comment.