Remove O_LARGEFILE from tests
[lttng-ust.git] / tests / ust-basic-tracing / ust-basic-tracing.c
index a7fa84daec6ff696c2616fcabc6ec25de580dac4..0705a48c5975f3934229ec02ae1edc6846ae4a7d 100644 (file)
@@ -223,7 +223,7 @@ int consume_stream(struct lttng_ust_shm_handle *handle, int cpu, char *outfile)
        }
 
        /* copy */
-       outfd = open(outfile, O_WRONLY | O_CREAT | O_LARGEFILE | O_TRUNC,
+       outfd = open(outfile, O_WRONLY | O_CREAT | O_TRUNC,
                        S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
        if (outfd < 0) {
                perror("open output");
This page took 0.023648 seconds and 4 git commands to generate.