Clean up some compile errors on Debian Etch.
[inoclam.git] / format.sh
blob5436acd93ee85083b4c934b11510b1f6b6d72ccc
1 #!/bin/sh
2 # inoclam - Inotify+ClamAV virus scanner
3 # Copyright (C) 2007, 2008 Vermont Department of Taxes
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License version 2 as
7 # published by the Free Software Foundation.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 find ./ -name \*.[ch]xx -exec indent -nbad -nbfda -bap -nbc -br -brs -c33 \
18 -cd33 -ncdb -ce -ci4 -cli0 -cp33 -d0 -di1 -nfc1 -nfca -i8 -ip0 -l240 \
19 -lp -npcs -npsl -nsc -nsob -nss -ts8 -cs -ut {} \;
20 find ./ -name \*.[ch]xx~ -exec rm {} \;