diff options
author | jcid <devnull@localhost> | 2008-09-14 16:07:12 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-09-14 16:07:12 +0200 |
commit | 8a2b5a9e5b8aad195531603aedbbdd5a9eb98bfa (patch) | |
tree | 6053a7217a9c976c0d1e78bb57c4052ba8353e53 /dpi/bookmarks.c | |
parent | 4272ccda16b3d6b8695f01eb3c6ea544a97cbf54 (diff) |
- Made several cleanups according to compiler warnings with "-W -Wall".
Diffstat (limited to 'dpi/bookmarks.c')
-rw-r--r-- | dpi/bookmarks.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dpi/bookmarks.c b/dpi/bookmarks.c index 55d34d31..36615496 100644 --- a/dpi/bookmarks.c +++ b/dpi/bookmarks.c @@ -1107,7 +1107,7 @@ static int Bmsrv_send_modify_answer(SockHandler *sh, char *url) * Parse a delete bms request, delete them, and update bm file. * Return code: { 0:OK, 1:Abort } */ -static int Bmsrv_modify_delete(SockHandler *sh, char *url) +static int Bmsrv_modify_delete(char *url) { char *p; int nb, ns, key; @@ -1153,7 +1153,7 @@ static int Bmsrv_modify_delete(SockHandler *sh, char *url) * Parse a move urls request, move and update bm file. * Return code: { 0:OK, 1:Abort } */ -static int Bmsrv_modify_move(SockHandler *sh, char *url) +static int Bmsrv_modify_move(char *url) { char *p; int n, section = 0, key; @@ -1192,7 +1192,7 @@ static int Bmsrv_modify_move(SockHandler *sh, char *url) * Parse a modify request: update urls and sections, then save. * Return code: { 0:OK, 1:Abort } */ -static int Bmsrv_modify_update(SockHandler *sh, char *url) +static int Bmsrv_modify_update(char *url) { char *p, *q, *title; int i, key; @@ -1247,7 +1247,7 @@ static int Bmsrv_modify_update(SockHandler *sh, char *url) * Parse an "add section" request, and update the bm file. * Return code: { 0:OK, 1:Abort } */ -static int Bmsrv_modify_add_section(SockHandler *sh, char *url) +static int Bmsrv_modify_add_section(char *url) { char *p, *title = NULL; @@ -1400,13 +1400,13 @@ static int Bmsrv_process_modify_request(SockHandler *sh, char *url) return 2; if (strstr(url, "operation=delete&")) { - if (Bmsrv_modify_delete(sh, url) == 1) + if (Bmsrv_modify_delete(url) == 1) return 1; if (Bmsrv_send_reload_request(sh, "dpi:/bm/modify") == 1) return 1; } else if (strstr(url, "operation=move&")) { - if (Bmsrv_modify_move(sh, url) == 1) + if (Bmsrv_modify_move(url) == 1) return 1; if (Bmsrv_send_reload_request(sh, "dpi:/bm/modify") == 1) return 1; @@ -1419,7 +1419,7 @@ static int Bmsrv_process_modify_request(SockHandler *sh, char *url) return 1; } else if (strstr(url, "operation=modify2&")) { - if (Bmsrv_modify_update(sh, url) == 1) + if (Bmsrv_modify_update(url) == 1) return 1; if (Bmsrv_send_reload_request(sh, "dpi:/bm/modify") == 1) return 1; @@ -1431,7 +1431,7 @@ static int Bmsrv_process_modify_request(SockHandler *sh, char *url) return 1; } else if (strstr(url, "operation=add_section&")) { - if (Bmsrv_modify_add_section(sh, url) == 1) + if (Bmsrv_modify_add_section(url) == 1) return 1; if (Bmsrv_send_reload_request(sh, "dpi:/bm/modify") == 1) return 1; |