From ce9aeb2aed91d607faaed8222f0503fe4e433e43 Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Fri, 24 May 2024 19:35:19 -0700 Subject: [PATCH] Release Cosmopolitan v3.3.7 --- libc/integral/normalize.inc | 2 +- test/posix/fread3gb_test.c | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/libc/integral/normalize.inc b/libc/integral/normalize.inc index 2e02295b7..c840b9552 100644 --- a/libc/integral/normalize.inc +++ b/libc/integral/normalize.inc @@ -4,7 +4,7 @@ #define __COSMOPOLITAN_MAJOR__ 3 #define __COSMOPOLITAN_MINOR__ 3 -#define __COSMOPOLITAN_PATCH__ 6 +#define __COSMOPOLITAN_PATCH__ 7 #define __COSMOPOLITAN__ \ (100000000 * __COSMOPOLITAN_MAJOR__ + 1000000 * __COSMOPOLITAN_MINOR__ + \ __COSMOPOLITAN_PATCH__) diff --git a/test/posix/fread3gb_test.c b/test/posix/fread3gb_test.c index 4644eb929..1167ceb1d 100644 --- a/test/posix/fread3gb_test.c +++ b/test/posix/fread3gb_test.c @@ -45,12 +45,8 @@ int test(void) { return 6; if (!(buf = malloc(SIZE))) return 7; - if ((rc = fread(buf, SIZE, 1, f)) != 1) { - fprintf(stderr, "tell = %zu\n", ftello(f)); - fprintf(stderr, "rc = %zu\n", rc); - perror("fread"); + if ((rc = fread(buf, SIZE, 1, f)) != 1) return 8; - } if (buf[0] != 'a') return 9; if (buf[SIZE - 1] != 'z')