Bug 216111

Summary: Minor violation of style(9) in hash.h
Product: Base System Reporter: Bulat <bltsrc>
Component: kernAssignee: freebsd-bugs (Nobody) <bugs>
Status: New ---    
Severity: Affects Many People    
Priority: ---    
Version: CURRENT   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
Proposed patch for 216111 none

Description Bulat 2017-01-15 14:02:48 UTC
r273268, sys/sys/hash.h

hash32_buf
hash32_str
hash32_strn
hash32_stre
hash32_strne

functions should have return value enclosed in parentheses,
according to style(9).

Thus, should be, for example, 
return (hash);
not
return hash;
Comment 1 statistisches_avarija 2022-11-21 04:32:09 UTC
Created attachment 238205 [details]
Proposed patch for 216111