1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-03-03 10:51:47 -05:00
Dan McGee 0303b26b1e Style change: return(x) --> return x
This was discussed and more or less agreed upon on the mailing list. A
huge checkin, but if we just do it and let people adjust the pain will
end soon enough. Rebasing should be relatively straighforward for anyone
that sees conflicts; just be sure you use the new return style if
possible.

The following semantic patch was used to do the change, along with some
hand-massaging in order to preserve parenthesis where appropriate:

The semantic match that finds this problem is as follows, although some
hand-massaging was done in order to keep parenthesis where appropriate:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression a;
@@
- return(a);
+ return a;

// </smpl>

A macros_file was also provided with the following content:

Additional steps taken, mainly for ASSERT() macros:
$ sed -i -e 's#return(NULL)#return NULL#' lib/libalpm/*.c
$ sed -i -e 's#return(-1)#return -1#' lib/libalpm/*.c

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-03-20 19:49:45 -05:00
..
2011-03-20 19:49:45 -05:00
2011-01-07 18:47:37 -06:00
2011-03-20 19:49:45 -05:00
2011-03-09 15:22:32 -05:00
2011-03-20 19:49:45 -05:00
2011-01-07 18:47:37 -06:00
2011-03-20 19:49:45 -05:00
2011-02-16 20:57:07 -06:00
2011-03-20 19:49:45 -05:00
2011-03-20 19:49:45 -05:00
2011-01-07 18:47:37 -06:00
2011-03-20 19:49:45 -05:00
2011-01-31 10:49:39 -06:00
2011-03-20 19:49:45 -05:00
2011-03-09 15:22:32 -05:00
2011-03-20 19:49:45 -05:00
2011-03-20 19:49:45 -05:00
2011-03-20 19:49:45 -05:00
2011-01-07 18:47:37 -06:00
2011-03-20 19:49:45 -05:00
2011-03-20 19:49:45 -05:00
2011-02-24 09:38:59 -06:00
2008-06-03 21:31:31 -05:00
2011-03-20 19:49:45 -05:00
2011-01-21 19:30:45 -06:00
2011-03-20 19:49:45 -05:00
2011-03-20 19:49:45 -05:00
2011-01-07 18:47:37 -06:00
2011-03-20 19:49:45 -05:00
2011-01-07 18:47:37 -06:00
2011-03-20 19:49:45 -05:00
2011-02-22 16:48:51 -06:00
2011-03-20 19:49:45 -05:00
2011-03-20 19:49:45 -05:00
2011-03-20 19:49:45 -05:00