Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> --- sys-utils/unshare.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-utils/unshare.c b/sys-utils/unshare.c index 2eea165..8cc9c46 100644 --- a/sys-utils/unshare.c +++ b/sys-utils/unshare.c @@ -78,8 +78,8 @@ int main(int argc, char *argv[]) textdomain(PACKAGE); atexit(close_stdout); - while((c = getopt_long(argc, argv, "hVmuinpU", longopts, NULL)) != -1) { - switch(c) { + while ((c = getopt_long(argc, argv, "hVmuinpU", longopts, NULL)) != -1) { + switch (c) { case 'h': usage(EXIT_SUCCESS); case 'V': @@ -108,7 +108,7 @@ int main(int argc, char *argv[]) } } - if(-1 == unshare(unshare_flags)) + if (-1 == unshare(unshare_flags)) err(EXIT_FAILURE, _("unshare failed")); if (optind < argc) { -- 1.8.1.2 -- 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