summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c
index 3a34e33b..a260025f 100644
--- a/src/util.c
+++ b/src/util.c
@@ -215,13 +215,12 @@ cc_log_argv(const char *prefix, char **argv)
}
// Copy the current log memory buffer to an output file.
-bool
+void
cc_dump_log_buffer(const char *path)
{
FILE *file = fopen(path, "w");
fwrite(logbuffer, 1, logsize, file);
fclose(file);
- return true;
}
// Something went badly wrong!