tap-driver.sh: flush stdout after each test result
[babeltrace.git] / plugins / ctf / fs-src / file.c
index 61c5a3195b0a0f383336e102d843645be2c48d4e..585faef876d6f6e03ebd1c0de1b283cf396af37d 100644 (file)
@@ -96,12 +96,12 @@ int ctf_fs_file_open(struct ctf_fs_file *file, const char *mode)
        BT_LOGD("Opened file: %p", file->fp);
 
        if (fstat(fileno(file->fp), &stat)) {
-               BT_LOGE("Cannot get file informations: %s", strerror(errno));
+               BT_LOGE("Cannot get file information: %s", strerror(errno));
                goto error;
        }
 
        file->size = stat.st_size;
-       BT_LOGD("File is %zu bytes", file->size);
+       BT_LOGD("File is %jd bytes", (intmax_t) file->size);
        goto end;
 
 error:
This page took 0.022722 seconds and 4 git commands to generate.