remove unused return value
This commit is contained in:
parent
40f014c432
commit
4ab5e9b614
@ -80,14 +80,12 @@ remind(char * who)
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
DECL char *
|
DECL void
|
||||||
set_repo(char* who, char* link)
|
set_repo(const char * const who, const char * const link)
|
||||||
{
|
{
|
||||||
char * r;
|
|
||||||
DBERR(sqlite3_bind_text(set_repo_stmt, 1, link, -1, SQLITE_STATIC));
|
DBERR(sqlite3_bind_text(set_repo_stmt, 1, link, -1, SQLITE_STATIC));
|
||||||
DBERR(sqlite3_bind_text(set_repo_stmt, 2, who, -1, SQLITE_STATIC));
|
DBERR(sqlite3_bind_text(set_repo_stmt, 2, who, -1, SQLITE_STATIC));
|
||||||
DBERR(sqlite3_step(set_repo_stmt));
|
DBERR(sqlite3_step(set_repo_stmt));
|
||||||
return r;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
DECL int
|
DECL int
|
||||||
|
Reference in New Issue
Block a user