From: Jonathan Rajotte Date: Tue, 25 Jul 2017 15:14:55 +0000 (-0400) Subject: Cleanup: remove dead assignment X-Git-Tag: v2.11.0-rc1~493 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=4a3a61c179ecf1338c71f0489c7a5a7d1bd41fe9 Cleanup: remove dead assignment Artifact of refactoring done in f8f3885cc52af9d3c951da78989d6f4a25270411 Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau --- diff --git a/src/common/index/index.c b/src/common/index/index.c index c94ec701c..ee73a0324 100644 --- a/src/common/index/index.c +++ b/src/common/index/index.c @@ -223,11 +223,7 @@ struct lttng_index_file *lttng_index_file_open(const char *path_name, DBG("Index opening file %s in read only", fullpath); read_fd = open(fullpath, O_RDONLY); if (read_fd < 0) { - if (errno == ENOENT) { - ret = -ENOENT; - } else { - PERROR("opening index in read-only"); - } + PERROR("opening index in read-only"); goto error; } @@ -271,7 +267,6 @@ error_close: PERROR("close read fd %d", read_fd); } } - ret = -1; error: free(index_file);