This is an idiom occasionally used to allow defining `return` as a macro that
does some additional instrumentation. This style has mostly fallen out of favor,
with mechanisms like `-finstrument-functions` instead used as a more robust way
of achieving the same thing.
job->common->errorfn("Could not open \"%s\" for writing : %s\n",
job->output_filename, strerror(errno));
/* perror(job->output_filename); */
- return(1);
+ return 1;
}
}
else
if (deflateInit2(z, Z_DEFAULT_COMPRESSION, Z_DEFLATED, -MAX_WBITS, MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY) != Z_OK) {
job->common->errorfn("Error initializing for deflation\n");
- return(1);
+ return 1;
}
gvwrite_no_z(job, z_file_header, sizeof(z_file_header));
#else
job->common->errorfn("No libz support.\n");
- return(1);
+ return 1;
#endif
}
return 0;
for (i = 1; i <= GD_n_cluster(g); i++) {
sg = gvevent_find_cluster(GD_clust(g)[i], b);
if (sg)
- return(sg);
+ return sg;
}
B2BF(GD_bb(g), bb);
if (OVERLAP(b, bb))