From: Tomi Ollila Date: Thu, 30 May 2019 19:56:14 +0000 (+0300) Subject: append _unused to the expression defined using unused() macro X-Git-Tag: archive/debian/0.30_rc0-1~173 X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=38dacf009c4feb5d4820bbdd9222d7e7be067903;hp=38dacf009c4feb5d4820bbdd9222d7e7be067903;p=notmuch 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 ---