- Fixes '>>' whitespace

- Replace ')\(>>\)\(\w\)' with ') \1 \2'.
- Replace '\(\w\)\(>>\)(' with '\1 \2 ('.
- Replace '\(\w\)\(>>\)\(\w\)' with '\1 \2 \3'.


git-svn-id: svn://svn.berlios.de/openocd/trunk@2369 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
zwelch
2009-06-23 22:40:42 +00:00
parent 6319ea33f7
commit 0e2c2fe1d1
12 changed files with 58 additions and 58 deletions

View File

@@ -34,10 +34,10 @@ static inline void buf_set_u32(uint8_t* buffer, unsigned int first, unsigned int
{
if ((num==32) && (first==0))
{
buffer[3]=(value>>24)&0xff;
buffer[2]=(value>>16)&0xff;
buffer[1]=(value>>8)&0xff;
buffer[0]=(value>>0)&0xff;
buffer[3]=(value >> 24)&0xff;
buffer[2]=(value >> 16)&0xff;
buffer[1]=(value >> 8)&0xff;
buffer[0]=(value >> 0)&0xff;
} else
{
unsigned int i;