compat-wireless: fix typo for used color for nagometer
authorLuis R. Rodriguez <lrodriguez@atheros.com>
Tue, 25 May 2010 22:55:14 +0000 (15:55 -0700)
committerLuis R. Rodriguez <lrodriguez@atheros.com>
Tue, 25 May 2010 22:55:14 +0000 (15:55 -0700)
s/REG/RED/

Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
scripts/admin-update.sh

index d93c5b0e4a361f597530f9d5a8b4a083cba93300..99ab6c3418a0e9ec3efdbf2e5b2393361d6986a6 100755 (executable)
@@ -73,21 +73,21 @@ nag_next_cherry_pick() {
        printf "${YELLOW}%10s${NORMAL} - Code changes brought in from linux-next\n" $2
        printf "${YELLOW}%10s${NORMAL} - Code additions brought in from linux-next\n" $3
        printf "${YELLOW}%10s${NORMAL} - Code deletions brought in from linux-next\n" $4
-       printf "${REG}%10s${NORMAL} - %% of code being cherry picked from linux-next\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');')
+       printf "${RED}%10s${NORMAL} - %% of code being cherry picked from linux-next\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');')
 }
 
 nag_pending() {
        printf "${YELLOW}%10s${NORMAL} - Code changes posted but not yet merged\n" $2
        printf "${YELLOW}%10s${NORMAL} - Code additions posted but not yet merged\n" $3
        printf "${YELLOW}%10s${NORMAL} - Code deletions posted but not yet merged\n" $4
-       printf "${REG}%10s${NORMAL} - %% of code not yet merged\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');')
+       printf "${RED}%10s${NORMAL} - %% of code not yet merged\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');')
 }
 
 nag_crap() {
        printf "${RED}%10s${NORMAL} - Crap changes not yet posted\n" $2
        printf "${RED}%10s${NORMAL} - Crap additions not yet merged\n" $3
        printf "${RED}%10s${NORMAL} - Crap deletions not yet posted\n" $4
-       printf "${REG}%10s${NORMAL} - %% of crap code\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');')
+       printf "${RED}%10s${NORMAL} - %% of crap code\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');')
 }
 
 nagometer() {