On Tue, Sep 13, 2011 at 12:07:35PM -0300, Davidlohr Bueso wrote: > --- a/mount/devname.c > +++ b/mount/devname.c > @@ -2,6 +2,7 @@ > > #include "devname.h" > #include "sundries.h" /* for xstrdup */ > +#include "xalloc.h" It would be better to include xalloc.h in sunders.h only. > -static void > -die_if_null(void *t) { > - if (t == NULL) > - die(EX_SYSERR, _("not enough memory")); ^^^^^^^^ > -} it means that you have to use: #define XALLOC_EXIT_CODE EX_SYSERR #include "xalloc.h" to keep it backwardly compatible. Karel -- Karel Zak <kzak@xxxxxxxxxx> http://karelzak.blogspot.com -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html