diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-12 00:32:05 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-12 00:32:05 +0000 |
commit | 51742f4bb0c57a4d5063ece9437a2f34a42e52c8 (patch) | |
tree | 7a912fc65ff43bdb09078d75bfc02ad8f5380b47 /shell/msh.c | |
parent | 50f7f446ecaadef6895a4ee601567e0b68330637 (diff) | |
download | busybox-w32-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.tar.gz busybox-w32-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.tar.bz2 busybox-w32-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.zip |
style fixes. No code changes
Diffstat (limited to 'shell/msh.c')
-rw-r--r-- | shell/msh.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/shell/msh.c b/shell/msh.c index 963e59446..4d1e84cf0 100644 --- a/shell/msh.c +++ b/shell/msh.c | |||
@@ -92,21 +92,21 @@ extern char **environ; | |||
92 | #ifdef MSHDEBUG | 92 | #ifdef MSHDEBUG |
93 | int mshdbg = MSHDEBUG; | 93 | int mshdbg = MSHDEBUG; |
94 | 94 | ||
95 | #define DBGPRINTF(x) if(mshdbg>0)printf x | 95 | #define DBGPRINTF(x) if (mshdbg>0) printf x |
96 | #define DBGPRINTF0(x) if(mshdbg>0)printf x | 96 | #define DBGPRINTF0(x) if (mshdbg>0) printf x |
97 | #define DBGPRINTF1(x) if(mshdbg>1)printf x | 97 | #define DBGPRINTF1(x) if (mshdbg>1) printf x |
98 | #define DBGPRINTF2(x) if(mshdbg>2)printf x | 98 | #define DBGPRINTF2(x) if (mshdbg>2) printf x |
99 | #define DBGPRINTF3(x) if(mshdbg>3)printf x | 99 | #define DBGPRINTF3(x) if (mshdbg>3) printf x |
100 | #define DBGPRINTF4(x) if(mshdbg>4)printf x | 100 | #define DBGPRINTF4(x) if (mshdbg>4) printf x |
101 | #define DBGPRINTF5(x) if(mshdbg>5)printf x | 101 | #define DBGPRINTF5(x) if (mshdbg>5) printf x |
102 | #define DBGPRINTF6(x) if(mshdbg>6)printf x | 102 | #define DBGPRINTF6(x) if (mshdbg>6) printf x |
103 | #define DBGPRINTF7(x) if(mshdbg>7)printf x | 103 | #define DBGPRINTF7(x) if (mshdbg>7) printf x |
104 | #define DBGPRINTF8(x) if(mshdbg>8)printf x | 104 | #define DBGPRINTF8(x) if (mshdbg>8) printf x |
105 | #define DBGPRINTF9(x) if(mshdbg>9)printf x | 105 | #define DBGPRINTF9(x) if (mshdbg>9) printf x |
106 | 106 | ||
107 | int mshdbg_rc = 0; | 107 | int mshdbg_rc = 0; |
108 | 108 | ||
109 | #define RCPRINTF(x) if(mshdbg_rc)printf x | 109 | #define RCPRINTF(x) if (mshdbg_rc) printf x |
110 | 110 | ||
111 | #else | 111 | #else |
112 | 112 | ||