On Fri, Jul 27, 2012 at 07:08:53PM -0400, Jim Rees wrote: > J. Bruce Fields wrote: > > + if (1 != write(pipefd[1], "!", 1)) > + printerr(2, "weird; maybe an interrupt?"); > > Use Yoda conditions must we? Yeah, yeah. How about: static void something_changed(void) { - if (1 != write(pipefd[1], "!", 1)) - printerr(2, "weird; maybe an interrupt?"); + if (write(pipefd[1], "!", 1) != 1) + printerr(0, "%s writing to pipe", strerror(errno)); } ? --b. -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html