From 762f5196be697678eca5dbcc4b059d38cad8d8fd Mon Sep 17 00:00:00 2001 From: Jeroen Ruigrok/asmodai Date: Fri, 3 Jun 2005 11:51:33 +0000 Subject: [PATCH] Fix last two return() calls to comply to style. Explicitly kept from previous commit to not confuse content and style. --- bin/ls/cmp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/ls/cmp.c b/bin/ls/cmp.c index 483b7966fb..3270500976 100644 --- a/bin/ls/cmp.c +++ b/bin/ls/cmp.c @@ -35,7 +35,7 @@ * * @(#)cmp.c 8.1 (Berkeley) 5/31/93 * $FreeBSD: src/bin/ls/cmp.c,v 1.9.2.2 2002/07/08 06:59:27 tjr Exp $ - * $DragonFly: src/bin/ls/cmp.c,v 1.3 2005/06/03 11:50:17 asmodai Exp $ + * $DragonFly: src/bin/ls/cmp.c,v 1.4 2005/06/03 11:51:33 asmodai Exp $ */ #include @@ -50,13 +50,13 @@ int namecmp(const FTSENT *a, const FTSENT *b) { - return (strcoll(a->fts_name, b->fts_name)); + return(strcoll(a->fts_name, b->fts_name)); } int revnamecmp(const FTSENT *a, const FTSENT *b) { - return (strcoll(b->fts_name, a->fts_name)); + return(strcoll(b->fts_name, a->fts_name)); } int -- 2.41.0