Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | sparse: ANSI-fy function declarations | Eric Wong | 2006-07-17 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These are just warnings from sparse, but it makes the output easier to read. I ran this through a quick perl script, but of course verified the output by looking at the diff and making sure the thing still compiles. here's the quick perl script I wrote to generate this patch: ----------- 8< ----------- use Tie::File; defined(my $pid = open my $fh, '-|') or die $!; if (!$pid) { open STDERR, '>&STDOUT' or die $!; exec 'sparse', @ARGV or die $!; } my $na = 'warning: non-ANSI function declaration of function'; while (<$fh>) { print STDERR $_; if (/^(.+?\.[ch]):(\d+):(\d+): $na '(\w+)'/o) { my ($f, $l, $pos, $func) = ($1, $2, $3, $4); $l--; tie my @x, 'Tie::File', $f or die "$!: $f"; print '-', $x[$l], "\n"; $x[$l] =~ s/\b($func\s*)\(\s*\)/$1(void)/; print '+', $x[$l], "\n"; untie @x; } } git-svn-id: https://svn.musicpd.org/mpd/trunk@4378 09075e82-0dd4-0310-85a5-a0d7c8717e4f | ||||
* | Change shank's email address | J. Alexander Treuman | 2006-07-14 | 1 | -1/+1 |
| | | | git-svn-id: https://svn.musicpd.org/mpd/trunk@4333 09075e82-0dd4-0310-85a5-a0d7c8717e4f | ||||
* | Huge header update, update the copyright and add | Avuton Olrich | 2006-07-13 | 1 | -1/+1 |
| | | | | | the GPL header where necessary git-svn-id: https://svn.musicpd.org/mpd/trunk@4317 09075e82-0dd4-0310-85a5-a0d7c8717e4f | ||||
* | hopefully replaygain now works for musepack | Warren Dukes | 2005-03-07 | 1 | -2/+2 |
| | | | git-svn-id: https://svn.musicpd.org/mpd/trunk@3031 09075e82-0dd4-0310-85a5-a0d7c8717e4f | ||||
* | rewrite replaygain code, needs testing | Warren Dukes | 2004-11-02 | 1 | -11/+47 |
| | | | git-svn-id: https://svn.musicpd.org/mpd/trunk@2482 09075e82-0dd4-0310-85a5-a0d7c8717e4f | ||||
* | merge shank-rewrite-config changes | Warren Dukes | 2004-10-28 | 1 | -11/+15 |
| | | | git-svn-id: https://svn.musicpd.org/mpd/trunk@2375 09075e82-0dd4-0310-85a5-a0d7c8717e4f | ||||
* | add replaygain preamp | Warren Dukes | 2004-07-17 | 1 | -1/+24 |
| | | | git-svn-id: https://svn.musicpd.org/mpd/trunk@1873 09075e82-0dd4-0310-85a5-a0d7c8717e4f | ||||
* | add aliasMrJones to various places | Warren Dukes | 2004-05-08 | 1 | -0/+18 |
| | | | git-svn-id: https://svn.musicpd.org/mpd/trunk@954 09075e82-0dd4-0310-85a5-a0d7c8717e4f | ||||
* | add replayGain stuff for flac from AliasMrJones | Warren Dukes | 2004-05-07 | 1 | -0/+80 |
git-svn-id: https://svn.musicpd.org/mpd/trunk@943 09075e82-0dd4-0310-85a5-a0d7c8717e4f |