Cleanup: remove index_read (unused var)
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 3 Dec 2013 16:41:16 +0000 (17:41 +0100)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 3 Dec 2013 16:41:16 +0000 (17:41 +0100)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
formats/ctf/ctf.c

index eec3350f3ba73b2c40c27c479943f3d80b4c093c..eef9f2abc8802cd19225b70e1b6f10f68363fef5 100644 (file)
@@ -1809,7 +1809,6 @@ int import_stream_packet_index(struct ctf_trace *td,
        struct ctf_packet_index ctf_index;
        struct ctf_packet_index_file_hdr index_hdr;
        struct packet_index index;
        struct ctf_packet_index ctf_index;
        struct ctf_packet_index_file_hdr index_hdr;
        struct packet_index index;
-       int index_read;
        int ret = 0;
        int first_packet = 1;
        size_t len;
        int ret = 0;
        int first_packet = 1;
        size_t len;
@@ -1843,8 +1842,8 @@ int import_stream_packet_index(struct ctf_trace *td,
                goto error;
        }
 
                goto error;
        }
 
-       while ((index_read = fread(&ctf_index, index_hdr.packet_index_len, 1,
-                                       pos->index_fp)) == 1) {
+       while (fread(&ctf_index, index_hdr.packet_index_len, 1,
+                       pos->index_fp) == 1) {
                uint64_t stream_id;
 
                memset(&index, 0, sizeof(index));
                uint64_t stream_id;
 
                memset(&index, 0, sizeof(index));
This page took 0.026284 seconds and 4 git commands to generate.