fix babeltrace-log error checking
[babeltrace.git] / converter / babeltrace-log.c
index 563a90f57f1df018d5f75cd18e70a633aea8811b..537a8bf8aebf401c8c889db59a9382eb75ca47f3 100644 (file)
@@ -45,7 +45,7 @@
 
 #include <babeltrace/babeltrace-internal.h>
 #include <babeltrace/ctf/types.h>
-#include <babeltrace/uuid.h>
+#include <babeltrace/compat/uuid.h>
 #include <babeltrace/endian.h>
 
 #define USEC_PER_SEC 1000000UL
@@ -358,7 +358,7 @@ int main(int argc, char **argv)
 
        metadata_fd = openat(dir_fd, "metadata", O_RDWR|O_CREAT,
                             S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP);
-       if (fd < 0) {
+       if (metadata_fd < 0) {
                perror("openat");
                goto error_closedatastream;
        }
This page took 0.035919 seconds and 4 git commands to generate.