mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-27 00:51:35 +00:00
return statement cleanup - kill pointless parentheses
This patch removes pointless parentheses from return statements. Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
parent
46a9f65f8b
commit
014c2544e6
10 changed files with 275 additions and 275 deletions
|
@ -501,7 +501,7 @@ xfs_reserve_blocks(
|
|||
if (inval == (__uint64_t *)NULL) {
|
||||
outval->resblks = mp->m_resblks;
|
||||
outval->resblks_avail = mp->m_resblks_avail;
|
||||
return(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
request = *inval;
|
||||
|
@ -537,7 +537,7 @@ xfs_reserve_blocks(
|
|||
outval->resblks = mp->m_resblks;
|
||||
outval->resblks_avail = mp->m_resblks_avail;
|
||||
XFS_SB_UNLOCK(mp, s);
|
||||
return(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue