mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
append _unused to the expression defined using unused() macro
This way if variables defined using unused() macro are actually used then code will not compile... - removed unused usage around one argc and one argv since those were used - changed one unused (char *argv[]) to unused (char **argv) to work with modified unused() macro definition
This commit is contained in:
parent
eea09ee153
commit
38dacf009c
3 changed files with 3 additions and 3 deletions
|
@ -53,7 +53,7 @@
|
|||
#include "talloc-extra.h"
|
||||
#include "crypto.h"
|
||||
|
||||
#define unused(x) x __attribute__ ((unused))
|
||||
#define unused(x) x ## _unused __attribute__ ((unused))
|
||||
|
||||
#define STRINGIFY(s) STRINGIFY_(s)
|
||||
#define STRINGIFY_(s) #s
|
||||
|
|
|
@ -121,7 +121,7 @@ parse_tag_list (void *ctx, char *response)
|
|||
|
||||
int
|
||||
notmuch_setup_command (notmuch_config_t *config,
|
||||
unused (int argc), unused (char *argv[]))
|
||||
int argc, char *argv[])
|
||||
{
|
||||
char *response = NULL;
|
||||
size_t response_size = 0;
|
||||
|
|
|
@ -358,7 +358,7 @@ notmuch_help_command (unused (notmuch_config_t * config), int argc, char *argv[]
|
|||
*/
|
||||
static int
|
||||
notmuch_command (notmuch_config_t *config,
|
||||
unused(int argc), unused(char *argv[]))
|
||||
unused(int argc), unused(char **argv))
|
||||
{
|
||||
char *db_path;
|
||||
struct stat st;
|
||||
|
|
Loading…
Reference in a new issue