Skip to content

Commit

Permalink
Remove some printf that crept in on last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
docfaraday committed May 3, 2014
1 parent 9866874 commit aa5e7f4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions trilite.c
Expand Up @@ -41,8 +41,6 @@ static const sqlite3_module triliteModule = {
int sqlite3_extension_init(sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi){
int rc = SQLITE_OK;

printf("Got init call\n");

/* Initialize the extension API */
SQLITE_EXTENSION_INIT2(pApi);

Expand All @@ -52,14 +50,12 @@ int sqlite3_extension_init(sqlite3 *db, char **pzErrMsg, const sqlite3_api_routi
/* Create module */
rc = sqlite3_create_module(db, "trilite", &triliteModule, 0);

printf("Error code %d\n", rc);
return rc;
}

/* Entry point for applications loading this module,
* This will load the module */
void load_trilite_extension(){
printf("Calling sqlite3_auto_extension\n");
sqlite3_auto_extension((void(*)(void))sqlite3_extension_init);
}

0 comments on commit aa5e7f4

Please sign in to comment.