Skip to content

Commit

Permalink
fixes for configure -q
Browse files Browse the repository at this point in the history
  • Loading branch information
Armin Biere committed Oct 2, 2023
1 parent 38950ca commit 1bf7324
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,9 @@ FILE *File::write_pipe (Internal *internal, const char *command,
const char *path, int &child_pid) {
assert (command[0] && command[0] != ' ');
MSG ("writing through command '%s' to '%s'", command, path);
#ifdef QUIET
(void) internal;
#endif
std::vector<char *> args;
split_str (command, args);
assert (!args.empty ());
Expand Down
2 changes: 1 addition & 1 deletion src/tracer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -410,10 +410,10 @@ void Tracer::flush (bool print) {
file->flush ();
#ifndef QUIET
if (!internal->opts.quiet)
#endif
if (print || internal->opts.verbose > 0)
MSG ("traced %" PRId64 " added and %" PRId64 " deleted clauses",
added, deleted);
#endif
_flushed = true;
}

Expand Down

0 comments on commit 1bf7324

Please sign in to comment.