From: Thomas H. P. Andersen Date: Sat, 23 Apr 2016 00:49:07 +0000 (+0200) Subject: tree-wide: remove unused variables (#3098) X-Git-Tag: v230~147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f5e13822d5b89fd36103093daf69af952bf0703;p=thirdparty%2Fsystemd.git tree-wide: remove unused variables (#3098) --- diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c index 5c9d32438c3..abe30413c3f 100644 --- a/src/core/dbus-unit.c +++ b/src/core/dbus-unit.c @@ -936,7 +936,6 @@ static int append_cgroup(sd_bus_message *reply, const char *p, Set *pids) { int bus_unit_method_get_processes(sd_bus_message *message, void *userdata, sd_bus_error *error) { _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL; _cleanup_(set_freep) Set *pids = NULL; - _cleanup_free_ char *p = NULL; Unit *u = userdata; pid_t pid; int r; diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 44dce471e71..e1d37d383a2 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1376,7 +1376,7 @@ static int setup_hostname(void) { static int setup_journal(const char *directory) { sd_id128_t this_id; - _cleanup_free_ char *b = NULL, *d = NULL; + _cleanup_free_ char *d = NULL; const char *p, *q; bool try; char id[33]; diff --git a/src/test/test-tmpfiles.c b/src/test/test-tmpfiles.c index 8fda0904f30..b34ebeefb24 100644 --- a/src/test/test-tmpfiles.c +++ b/src/test/test-tmpfiles.c @@ -33,7 +33,7 @@ int main(int argc, char** argv) { _cleanup_free_ char *cmd = NULL, *cmd2 = NULL, *ans = NULL, *ans2 = NULL, *d = NULL, *tmp = NULL, *line = NULL; - _cleanup_close_ int fd = -1, fd2 = -1, fd3 = -1; + _cleanup_close_ int fd = -1, fd2 = -1; const char *p = argv[1] ?: "/tmp"; char *pattern;