Matthias Andree wrote: >+ /* do not optimize the next two lines - they must both be executed in >+ * this order. || might short-circuit the fclose(), and combining them >+ * into one statement might reverse the order of execution. >+ * Also, fflush() may not be sufficient - on some file systems, the >+ * error is still delayed until the final [f]close(). */ >+ e = ferror(f); >+ e |= fclose(f); >+ if (e) The commentary above should be common knowledge for anyone familiar with ANSI C. So I'd suggest moving the comments into the description section of the commit and removing them from the actual code. -- Sincerely, Stephen R. van den Berg. "And now for something *completely* different!" -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html