Skip to content

Commit 778a6f7

Browse files
committed
Temporarily increase debug output
1 parent 39a9a6e commit 778a6f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@ jobs:
104104
run: |
105105
set -e -x
106106
cd build
107-
ctest -j 4 --output-on-failure -T test -C ${BUILD_TYPE:-RelWithDebInfo}
107+
ctest --output-on-failure -T test -VV -C ${BUILD_TYPE:-RelWithDebInfo}
108108
ZONE_KERNEL=fallback ctest -j 4 --output-on-failure -T test -C ${BUILD_TYPE:-RelWithDebInfo}

src/zone.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ int32_t zone_open_file(
286286

287287
if (!(file = malloc(sizeof(*file))))
288288
return ZONE_OUT_OF_MEMORY;
289-
memset(file, 0, sizeof(*file));// - sizeof(file->fields.tape));
289+
memset(file, 0, sizeof(*file));
290290
if ((result = open_file(parser, file, path, length)) < 0)
291291
goto err_open;
292292

0 commit comments

Comments
 (0)