From 079f8afa0a16112cbaf7012c82b38b7358b82141 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Mon, 27 Nov 2006 16:49:31 +0000 Subject: style cleanup: return(a) -> return a, part 1 --- libbb/obscure.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbb/obscure.c') diff --git a/libbb/obscure.c b/libbb/obscure.c index 9ac6bcd82..56aacc910 100644 --- a/libbb/obscure.c +++ b/libbb/obscure.c @@ -97,7 +97,7 @@ static const char *obscure_msg(const char *old_p, const char *new_p, const struc /* size */ if (!new_p || (length = strlen(new_p)) < CONFIG_PASSWORD_MINLEN) - return("too short"); + return "too short"; /* no username as-is, as sub-string, reversed, capitalized, doubled */ if (string_checker(new_p, pw->pw_name)) { -- cgit v1.2.3