Cleanup: remove dead assignment
[lttng-tools.git] / src / common / index / index.c
index c94ec701c869f2df3bf61e2845409d3c46697131..ee73a0324c75467a7cd6706a6f9efa8b13b2659f 100644 (file)
@@ -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);
This page took 0.023107 seconds and 4 git commands to generate.