Skip to content

Commit 8dad2a8

Browse files
committed
Fix snapshot and remove test file
1 parent 06f98cc commit 8dad2a8

File tree

6 files changed

+5
-12
lines changed

6 files changed

+5
-12
lines changed

lib/c.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ int ftell(FILE *stream)
624624

625625
/* Minimum alignment for all memory allocations. */
626626
#define MIN_ALIGNMENT 8
627-
#define ALIGN_UP(val, align) (((val) + (align) -1) & ~((align) -1))
627+
#define ALIGN_UP(val, align) (((val) + (align) - 1) & ~((align) - 1))
628628

629629
typedef struct chunk {
630630
struct chunk *next, *prev;

test.c

Lines changed: 0 additions & 7 deletions
This file was deleted.

tests/snapshots/fib-arm.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

tests/snapshots/fib-riscv.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

tests/snapshots/hello-arm.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

tests/snapshots/hello-riscv.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)